Accessibility in Swift: Dynamic Text | Continued Learning #29

Поділитися
Вставка
  • Опубліковано 20 жов 2024

КОМЕНТАРІ • 12

  • @peterwolf2657
    @peterwolf2657 Рік тому +4

    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.

  • @pasha7324
    @pasha7324 Рік тому +1

    If you plan to develop an app that EVERYONE will use, you have to make sure it's accessible by EVERYONE. Great tutorial, Nick

  • @shreyapallan5704
    @shreyapallan5704 3 дні тому

    So good! thank you thank you thank you

  • @geoffplywood6112
    @geoffplywood6112 Рік тому

    Lots of useful insights in this tutorial, thanks

  • @tuguiaempresarial2582
    @tuguiaempresarial2582 Рік тому

    im very excited too learn something new, especially when you explain it Nick!

  • @julianm080808
    @julianm080808 7 місяців тому

    Hey Nick, thanks for this video it was terrific stuff.

  • @andrejkling3886
    @andrejkling3886 Рік тому

    Excellent lesson Nick… 👍💯

  • @mr_Lucius
    @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
    @techbarn_org Рік тому

    Great video

  • @CapDrew
    @CapDrew 7 місяців тому

    why do you call a list section a "cell" is that a lingo or other framework talk?

    • @SwiftfulThinking
      @SwiftfulThinking  7 місяців тому +1

      “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

    • @CapDrew
      @CapDrew 7 місяців тому

      @@SwiftfulThinking I see. Thank you for the response.