If you plan to develop an app that EVERYONE will use, you have to make sure it's accessible by EVERYONE. Great tutorial, Nick
@peterwolf2657 Жыл бұрын
Thanks for the video. One remark. SizeCategory is deprecated. The alternative is dynamicTypeSize, that has a nice function called isAccessibilitySize to get a bool if the size is very big or not.
@tuguiaempresarial2582 Жыл бұрын
im very excited too learn something new, especially when you explain it Nick!
@geoffplywood6112 Жыл бұрын
Lots of useful insights in this tutorial, thanks
@julianm08080810 ай бұрын
Hey Nick, thanks for this video it was terrific stuff.
@Mahadev-x7u Жыл бұрын
Excellent lesson Nick… 👍💯
@shreyapallan57042 ай бұрын
So good! thank you thank you thank you
@mr_Lucius Жыл бұрын
Cool video! As always, Thanks! 🥳 Can you record some time video about "privacy". Is it possible to customize the view with permissions and how to add them correctly when the user first opens the application and in general what permissions should be added... Very little information on this topic
@techbarn_org Жыл бұрын
Great video
@CapDrew9 ай бұрын
why do you call a list section a "cell" is that a lingo or other framework talk?
@SwiftfulThinking9 ай бұрын
“Cell” is common lingo for “reusable component”. When you make lists in UIKit, you create TableViews or CollectionViews which have “reusable cells”. In SwiftUI we have the same thing except the “cell” syntax has been dropped
@CapDrew9 ай бұрын
@@SwiftfulThinking I see. Thank you for the response.