Accessibility in Swift: Dynamic Text | Continued Learning #29

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024

ความคิดเห็น • 12

  • @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

  • @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.

  • @shreyapallan5704
    @shreyapallan5704 หลายเดือนก่อน

    So good! thank you thank you thank you

  • @tuguiaempresarial2582
    @tuguiaempresarial2582 ปีที่แล้ว

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

  • @geoffplywood6112
    @geoffplywood6112 ปีที่แล้ว

    Lots of useful insights in this tutorial, thanks

  • @Mahadev-x7u
    @Mahadev-x7u ปีที่แล้ว

    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

  • @julianm080808
    @julianm080808 9 หลายเดือนก่อน

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

  • @techbarn_org
    @techbarn_org ปีที่แล้ว

    Great video

  • @CapDrew
    @CapDrew 8 หลายเดือนก่อน

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

    • @SwiftfulThinking
      @SwiftfulThinking  8 หลายเดือนก่อน +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 8 หลายเดือนก่อน

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