Artwork

Player FM - Internet Radio Done Right
Checked 1y ago
اضافه شده در three سال پیش
محتوای ارائه شده توسط Gourav Nayyar. تمام محتوای پادکست شامل قسمت‌ها، گرافیک‌ها و توضیحات پادکست مستقیماً توسط Gourav Nayyar یا شریک پلتفرم پادکست آن‌ها آپلود و ارائه می‌شوند. اگر فکر می‌کنید شخصی بدون اجازه شما از اثر دارای حق نسخه‌برداری شما استفاده می‌کند، می‌توانید روندی که در اینجا شرح داده شده است را دنبال کنید.https://fa.player.fm/legal
Player FM - برنامه پادکست
با برنامه Player FM !
icon Daily Deals

022 Namespaces in Swift

13:35
 
اشتراک گذاری
 

Manage episode 311359785 series 3112670
محتوای ارائه شده توسط Gourav Nayyar. تمام محتوای پادکست شامل قسمت‌ها، گرافیک‌ها و توضیحات پادکست مستقیماً توسط Gourav Nayyar یا شریک پلتفرم پادکست آن‌ها آپلود و ارائه می‌شوند. اگر فکر می‌کنید شخصی بدون اجازه شما از اثر دارای حق نسخه‌برداری شما استفاده می‌کند، می‌توانید روندی که در اینجا شرح داده شده است را دنبال کنید.https://fa.player.fm/legal

Today's episode is on namespaces in swift. Important questions to be addressed in the podcast are:

  • What are NameSpaces?
  • How namespaces are used in objc?
  • What all we need to keep in mind when we have frameworks? (Objc)
  • How namespaces are used in SWIFT?
  • What all we need to keep in mind when we have frameworks? (Objc)
  • How do we define namespaces in swift?
  • Use of struct or enum?
  • Which one is recommended?

Guest Name: Bopanna Sadera
You can reach out to me on Twitter:
@gouravnayyar
Background music:
https://www.bensound.com/

--- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message
  continue reading

23 قسمت

Artwork

022 Namespaces in Swift

The iOS Dev Podcast

published

iconاشتراک گذاری
 
Manage episode 311359785 series 3112670
محتوای ارائه شده توسط Gourav Nayyar. تمام محتوای پادکست شامل قسمت‌ها، گرافیک‌ها و توضیحات پادکست مستقیماً توسط Gourav Nayyar یا شریک پلتفرم پادکست آن‌ها آپلود و ارائه می‌شوند. اگر فکر می‌کنید شخصی بدون اجازه شما از اثر دارای حق نسخه‌برداری شما استفاده می‌کند، می‌توانید روندی که در اینجا شرح داده شده است را دنبال کنید.https://fa.player.fm/legal

Today's episode is on namespaces in swift. Important questions to be addressed in the podcast are:

  • What are NameSpaces?
  • How namespaces are used in objc?
  • What all we need to keep in mind when we have frameworks? (Objc)
  • How namespaces are used in SWIFT?
  • What all we need to keep in mind when we have frameworks? (Objc)
  • How do we define namespaces in swift?
  • Use of struct or enum?
  • Which one is recommended?

Guest Name: Bopanna Sadera
You can reach out to me on Twitter:
@gouravnayyar
Background music:
https://www.bensound.com/

--- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message
  continue reading

23 قسمت

همه قسمت ها

×
 
Today's episode is on namespaces in swift. Important questions to be addressed in the podcast are: What are NameSpaces? How namespaces are used in objc? What all we need to keep in mind when we have frameworks? (Objc) How namespaces are used in SWIFT? What all we need to keep in mind when we have frameworks? (Objc) How do we define namespaces in swift? Use of struct or enum? Which one is recommended? Guest Name: Bopanna Sadera You can reach out to me on Twitter: @gouravnayyar Background music: https://www.bensound.com/ --- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message…
 
In today's episode, we are going to talk about Protocol oriented programming which got introduced to us along with Swift 2.0. Protocol vs Classes Object-oriented approach vs Protocol oriented approach Pros and Cons Youtube: https://www.youtube.com/gouravnayyar Twitter; https://twitter.com/gouravnayyar Helpful resources: https://www.pluralsight.com/guides/protocol-oriented-programming-in-swift --- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message…
 
In this episode, we would be discussing the blog post written by Ted Kremenek, Manager of the Languages and Runtime Team at Apple. You can find the blog details here, https://forums.swift.org/t/on-the-road-to-swift-6/32862 If you are interested in know more details, do check the forum link. It is filled with more details and comments. Today I have with me Damodar Shenoy to quickly share the highlights of what is coming on SWIFT 6. If you are interested in learning swift find the below-mentioned channel, https://www.youtube.com/gouravnayyar --- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message…
 
Hello CATALINA In todays podcast we will discuss with Mac OS Catalina and the new cool features it has. New Trio of Apps Catalyst/Marzipan Swift UI Voice control with Mac OS apps Re design of reminder app Changes with Xcode Dark Mode You can find more details from the Apple Keynote: https://www.apple.com/apple-events/june-2019/ --- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message…
 
In this episode we would be talking about the difference between Weak and UnOwned object reference. Understanding the key difference between these two and also will talk about the common example where weak and unowned should be used. Twitter Handler: @gouravnayyar Today's Guest: @itsdamslife Helpful links : https://docs.swift.org/swift-book/LanguageGuide/AutomaticReferenceCounting.html Sound credits: https://www.bensound.com/ --- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message…
 
In today's session we would be coving the ground rules for iOS developers while writing the swift code. We will discuss from adding comments to your code to writing extensions and protocols. Use of Guard Statement Documenting you code Type Inference Final keyword for the classes Why you should have `struct` as default Always start with immutable variable when you're not sure about the mutability of it Use self wisely or avoid using it where-ever you can Avoid Free functions Avoid Force unwrap and implicitly unwrapped Optional Use HIGH Order function but don't force them **BONUS**: Use trailing Closure syntax Reach out me: twitter: @gouravnayyar youtube: https://www.youtube.com/gouravnayyar --- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message…
 
Today's session we will talk about OAuth 2.0. We will also discuss how this is different from the traditional way of logging in. HIGHLIGHTS: What is OAuth 2.0 Who is using it Where/Why OAuth is used You can find me on, Twitter: https://twitter.com/gouravnayyar Youtube: https://youtube.com/gouravnayyar You can find the OAuth 2.0 doc: https://oauth.net/2/ --- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message…
 
In this episode we are going to talk about the Tips one can follow to take their Swift code to next level. We are going to discuss about language features and guidelines which can help you make our code simple to understand by other developers. You can find the API guidelines here: https://swift.org/documentation/api-design-guidelines/ You can reach out me on twitter and handler is:@gouravnayyar Let me know if this podcast was helpful and what tips you follow when you write the swift code. --- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message…
 
In this podcast we are going to talk about Application binary interface (ABI) with swift. Youtube channel for video tutorials: https://www.youtube.com/gouravnayyar Swift Doc: https://swift.org/abi-stability/ You can reach out to me on twitter @gouravnayyar --- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message…
 
In this session we will talk about Universal links, Documentation: - Supporting Universal Links - UIApplicationDelegate - NSUserActivit y Today's guest Nithin Bhaktha @NSOperation (Twitter handler) You can reach out to me at @gouravnayyar (twitter handler) --- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message…
 
In this episode we will talk about the traditional way of using for loop with index and Enumeration concept. We will address the below mentioned questions, Which one is Faster? Why one is faster than the other? How the storage and accessing of Collection type happens in case of Enumeration and For loop? Today's guest: @ilanchezhiank You can reach out me on twitter: @gouravnayyar --- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message…
 
In today's episode we will cover the concept of Deep copy and Shallow copy. We will also revise the concept of Reference Type and Value Type concept. You can find Reference and Value Type podcast in Episode 004 and Stack vs Heaps in Episode 003 You can reach out to me on twitter and my handler is @gouravnayyar www.youtube.com/gouravnayyar --- Send in a voice message: https://podcasters.spotify.com/pod/show/gouravnayyar/message…
 
Loading …

به Player FM خوش آمدید!

Player FM در سراسر وب را برای یافتن پادکست های با کیفیت اسکن می کند تا همین الان لذت ببرید. این بهترین برنامه ی پادکست است که در اندروید، آیفون و وب کار می کند. ثبت نام کنید تا اشتراک های شما در بین دستگاه های مختلف همگام سازی شود.

 

icon Daily Deals
icon Daily Deals
icon Daily Deals

راهنمای مرجع سریع

در حین کاوش به این نمایش گوش دهید
پخش