In-House Articles



Recommended Articles



Jobs



Swift Anytime Bangalore Meetup Wrap🥳

Dear iOS enthusiasts,

We wanted to express our sincere gratitude for making the second chapter of Swift Anytime iOS Meetup at Bangalore a huge success!

We are so grateful to have such a passionate and energetic community. For our speakers, we extend a hearfelt thank you for sharing informative, engaging and inspiring talks. We also hope that everyone found value in the discussions and networking opportunities at the meetup. We look forward to continue bringing together all iOS enthusiasts in future events and we hope to see you all again very soon. Reach out to us on contact@swiftanytime.com if you would like to sponsor, volunteer or contribute for the upcoming meetups.

Swift Anytime Weekly

Cracking the iOS Interview

What is the significance of ViewModifier in SwiftUI?

View modifiers play an important role in building user interfaces. They allow us to separate the appearance and behavior of the views which can easily be modified and customized.

Swift Anytime Weekly

What are the differences between static and class functions in Swift?

  • Class function is associated with a class type only, while a static function can be associated with a type like a struct, class, or enum.
  • Class functions can be overridden by subclasses, while static functions cannot be overridden.
  • Class functions can access the self properties of the class, which is not possible for static functions.
Swift Anytime Weekly

iOS Good Practices

Avoid using a Storyboard if possible

You might be thinking about how you can avoid using Storyboard in your project. While you make user interfaces using pure code, it gives you some benefits like the below:

  • Fixing version conflicts in Storyboard files is much more challenging than with code.
  • Making reusable views is easier with code and not with Storyboard.
  • Storyboard leads you to crashes when an outlet or action is not set up correctly.
  • You might need to wait for a long time to create or update UIs in Storyboard files.
Swift Anytime Weekly

Code Quiz

Can extensions store computed properties?

  1. True
  2. False

Solve the quiz and submit your answer along with your Twitter handle at team@swiftanytime.com

Swift Anytime Weekly

Thanks for Reading

We at Swift Anytime try to bring the best iOS ecosystem information for you that’s not only valuable but also most relevant based on your experience & preference.

Swift Anytime Weekly