You Need to Document Your Swift Code with DocC

  Рет қаралды 11,988

Sean Allen

Sean Allen

Күн бұрын

Пікірлер: 54
@seanallen
@seanallen 4 ай бұрын
Learn more Swift and SwiftUI with my courses at seanallen.teachable.com
@Sachka
@Sachka 3 ай бұрын
hey, i'm an ai engineer, i'm looking forward to purchase a vision course where you would showcase how to talk to a 3d asset, i mean just create the 3d sphere of siri a version that follows you around would be enough, btw keep the good work
@dre5671
@dre5671 4 ай бұрын
Pro Tip: Ask Claude or GPT to add documentation for your code. It’s usually pretty great right away. Extra pro tip, build your own gpt to use things like important/tip/warning/etc, also back ticks to improve your documentation Didn’t know about the back ticks and the important bubbles till now! Sweet stuff 🙏🏼
@seanallen
@seanallen 4 ай бұрын
I'm a big fan of those important bubbles.
@s81n
@s81n 4 ай бұрын
I get some heat sometimes at work for saying "There's no such thing as self-documenting code" but I stand by it. Your code may say what you're doing, but it can't tell why you're doing it and the why is the important part the comments need to cover. That being said I also don't accept uncommented pull requests. Too many people need to touch our code years from now, those comments are important.
@seanallen
@seanallen 4 ай бұрын
I agree. The "why" is SO important.
@austnsauce2543
@austnsauce2543 4 ай бұрын
Wow I just wrote down "learn ios documentation" on my todo list for my app and this video shows up today. Thanks!
@seanallen
@seanallen 4 ай бұрын
👀
@danuff
@danuff 4 ай бұрын
OMG THANK YOU. Never knew what DocC actually did until now. I'll be busy for the next few hours. 🙂
@seanallen
@seanallen 4 ай бұрын
Happy to help!
@darylewalker6862
@darylewalker6862 4 ай бұрын
Thanks for telling me about the side-panel documentation preview!
@seanallen
@seanallen 3 ай бұрын
It's pretty cool
@KevKevAllen
@KevKevAllen 26 күн бұрын
I’m new to coding, 👨🏼‍💻 and I’m so glad I found this because I comment the daylights out of my code. I think most of my pages are more comment than code. I just wish there was a tool like this to write User Manuals for the finished app, not just the developer documentation 😭
@DaveJacobseniOS
@DaveJacobseniOS 3 ай бұрын
Fantastic walkthrough! I just joined a new company that uses DocC and I've never dealt with it before so this is very timely 👌
@kennvillegas2014
@kennvillegas2014 3 ай бұрын
This is really interesting. Having a strong background in ObjC\Cocoa I am very used to this Markdown style The ONE thing that I will add is that you can ALSO do this with a foldable block-comments just starting with standard /** */ delimiters
@fg8520
@fg8520 4 ай бұрын
please tutorial on airdrop usage in your app, great video as always
@kris_torres
@kris_torres 4 ай бұрын
Nice vid on DocC. I didn’t know that you can do double ticks for the code links. 🙂 Quick question: Do you recommend also commenting the private structs, methods, et al., or only the ones that are “public”?
@seanallen
@seanallen 4 ай бұрын
Based on this question, I assume you're building a library. In that case, these are for two different "users". The public functions or for other developers that use your library, so I'd say that's a must. All the private functions are for you and your internal team. So if you want good documentation for you and your internal team, then I would say yes. If that's not important to you, then don't.
@RyanPhung725
@RyanPhung725 3 ай бұрын
Thanks for the video! If you have a lot to document for a function, the inline documentation would get very large. Is there a way to bring this to a new file or hide it some way? Thank you!
@marceljaeger
@marceljaeger 4 ай бұрын
Nice video, DocC is amazing! While you are in the developing process of an app, you might know every function. But after a few weeks break, it`s so hard and annoying to dive in the codebase again, if the project is big and you haven't write a documentation. 😵
@seanallen
@seanallen 4 ай бұрын
Exactly :)
@bryceellis112
@bryceellis112 4 ай бұрын
This is was a very impactful video. Thanks for sharing. When you include code snippets (6:18) could you put them at the end of your file? Or does it make most sense to keep it near the function
@KuisebGecko
@KuisebGecko 4 ай бұрын
Sean, you once apologised in a video for being 'anal', I for one appreciate your desire to make the code more readable. My code has grown to the extent where I would be spending more time on figuring out what my previous code did rather than spending that time to improve the app. I have taken a stab at DocC once but found myself wasting more time in trying to figure it all out; so thank you VERY MUCH for your videos on summarising these important tools. Like a previous poster said, your videos very often come out at EXACTLY the right time.😎👍
@Stricken174
@Stricken174 4 ай бұрын
Documentation is a great feature, i'm using from time to time to indicate some spicy stuff with warnings.
@muncho404
@muncho404 4 ай бұрын
Thanks for sharing Sean
@seanallen
@seanallen 4 ай бұрын
You bet!
@shashikumar740
@shashikumar740 2 ай бұрын
Helpful information 🙌
@seanallen
@seanallen 2 ай бұрын
Glad it was helpful!
@TE_-.-
@TE_-.- 4 ай бұрын
Just a quick question, can you collapse these comments in the code base or hide them in some other way? Yes, it's good to see them, but for me it's too confusing when I see so many lines of comments.
@seanallen
@seanallen 4 ай бұрын
I'm not sure, but I agree with your sentiment. That's why I changed the color of my comments/documentations in Xcode to be a light grey so it's not prominent. My code is colorful so that's what sticks out while the comments kind of blend into the background. That's my solution for this at least.
@roygalaasen
@roygalaasen 3 ай бұрын
I posted a link to a helpful article, but it seems to have been removed. I will not repost the link, but wanted to add a comment from other posters here that you can make foldable comments with the block comment tag /** */
@seanallen
@seanallen 3 ай бұрын
@@roygalaasen Hey Roy, I didn't remove the comment (I never do that). Not sure what happend.
@roygalaasen
@roygalaasen 3 ай бұрын
@@seanallen Maybe it was filtered out automatically by Google or something as all I posted was a link to an article on Medium with no more context other than it was clear by the url where the link would go plus the topic. I was going to add to that link but it was gone. These things happens, by saying the comment was removed, I didn’t mean necessarily that _you_ were the one removing it. It actually happens once in a blue moon, could just be a KZbin bug as well.
@BehindTheFilm
@BehindTheFilm 4 ай бұрын
So good 🤩 Thanks for sharing!
@seanallen
@seanallen 4 ай бұрын
I’m a big fan of this. Happy to share!
@samtr4439
@samtr4439 4 ай бұрын
Thanks Sean.
@seanallen
@seanallen 3 ай бұрын
Any time
@vamsi3877
@vamsi3877 4 ай бұрын
Awesome Sean 👏
@seanallen
@seanallen 4 ай бұрын
Glad you enjoyed it
@arrwoodo
@arrwoodo 4 ай бұрын
That was REALLY helpful! ThX!)
@seanallen
@seanallen 4 ай бұрын
Glad it helped!
@ianfrye8988
@ianfrye8988 4 ай бұрын
Great video my friend!
@seanallen
@seanallen 4 ай бұрын
Glad you enjoyed it!
@JasonMitchellAZ
@JasonMitchellAZ 4 ай бұрын
I've been using doc comments some, but learned some more cool things I didn't know about. Also, you can use multi-line style commenting for doc comments, too - i.e. /** and close with */
@seanallen
@seanallen 4 ай бұрын
Thanks for sharing that! So many cool tricks with this.
@adamgibbons4262
@adamgibbons4262 22 күн бұрын
Why comment your code it makes the file sizes way bigger (using up token count for A.I), its easier to feed an A.I all your code and ask it questions.
@bored7743
@bored7743 4 ай бұрын
Kudos for learning this shit. Couldn’t do it. Bored me to death
@nileshjdarji
@nileshjdarji 4 ай бұрын
Wow! This is wild. 👍
@seanallen
@seanallen 4 ай бұрын
Pretty cool, right?
@Spacer-l3j
@Spacer-l3j 4 ай бұрын
nice one chief
@victorriurean
@victorriurean 4 ай бұрын
Swift Date Components & Calculations Tutorial
12:02
Sean Allen
Рет қаралды 8 М.
31 Xcode Tips & Tricks - 2023
17:45
Sean Allen
Рет қаралды 42 М.
Муж внезапно вернулся домой @Oscar_elteacher
00:43
История одного вокалиста
Рет қаралды 7 МЛН
Кто круче, как думаешь?
00:44
МЯТНАЯ ФАНТА
Рет қаралды 6 МЛН
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 19 МЛН
Python vs Swift | Prime Reacts
19:44
ThePrimeTime
Рет қаралды 81 М.
Getting the MOST out of Xcode 16
24:52
Stewart Lynch
Рет қаралды 6 М.
Programmatic Navigation in SwiftUI explained
17:50
donny wals
Рет қаралды 7 М.
Swift Concurrency | How To Use async/await Like The PROS
14:12
*Next-door 10x Software Engineer* [FULL]
4:50
Programmers are also human
Рет қаралды 801 М.
How Senior Programmers ACTUALLY Write Code
13:37
Thriving Technologist
Рет қаралды 1,6 МЛН
These Swift 6 Features Change a Lot! | @SwiftBird
17:10
The Swift Bird
Рет қаралды 4,4 М.
Муж внезапно вернулся домой @Oscar_elteacher
00:43
История одного вокалиста
Рет қаралды 7 МЛН