podcast
details
.com
Print
Share
Look for any podcast host, guest or anyone
Search
Showing episodes and shows of
Gourav Nayyar
Shows
The iOS Dev Podcast
023 Apple's "Spring Loaded" Event
What to expect from Apple's "Spring Loaded" Event which is happening on 20th April 2021. #ipadPro #ipadMini #appleTV #appleWatch #LEDScreen #miniLED #airtags Twitter: @gouravnayyar Details: https://www.apple.com/in/apple-events/
2021-04-16
04 min
The iOS Dev Podcast
022 Namespaces in Swift
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.be...
2021-04-09
13 min
The iOS Dev Podcast
021 macOS Big Sur
In today's episode, we would be talking about what all we have with macOS Big Sur macOS Big Sur Preview https://www.apple.com/macos/big-sur-preview/ Background music: https://www.bensound.com/
2020-06-28
06 min
The iOS Dev Podcast
020 Protocol Oriented Programming
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
2020-05-20
06 min
The iOS Dev Podcast
019 Way to Swift 6
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
2020-02-17
12 min
The iOS Dev Podcast
018 Hello CATALINA 🤝
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/
2019-06-04
06 min
The iOS Dev Podcast
017 Weak Vs Unowned Reference
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/
2019-04-11
10 min
The iOS Dev Podcast
016 iOS Development 10 Rules
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 o...
2019-04-05
18 min
The iOS Dev Podcast
015 OAuth 2.0
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/
2019-03-14
11 min
The iOS Dev Podcast
014 Bring your Swift code to the Next Level - 5 Tips
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.
2019-03-12
06 min
The iOS Dev Podcast
013 ABI Stability with SWIFT 5
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
2019-02-27
05 min
The iOS Dev Podcast
012 Universal links
In this session we will talk about Universal links, Documentation: - Supporting Universal Links - UIApplicationDelegate - NSUserActivity Today's guest Nithin Bhaktha @NSOperation (Twitter handler) You can reach out to me at @gouravnayyar(twitter handler)
2019-02-25
17 min
The iOS Dev Podcast
011 Enumeration Vs For Loop
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
2019-02-18
09 min
The iOS Dev Podcast
010 Static vs Class Keyword || Swift
In this episode we will cover the the knowledge around Static vs Class keyword. If you have any question around the topic, reach out to us at Today's Guest: @Vasu_N (Twitter handler) Gourav Nayyar: @gouravnayyar (Twitter)
2019-01-31
06 min
The iOS Dev Podcast
009 Deep Copy vs Shallow Copy
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
2019-01-30
05 min
The iOS Dev Podcast
008 OptionSet Protocol | Swift
In this lesson you will learn about the OptionSet protocol. You use the OptionSet protocol to represent bitset types, where individual bits represent members of a set. Today's guest @Vasu_N You can reach out to me @gouravnayyar
2019-01-29
13 min
The iOS Dev Podcast
007 Struct vs Class - Swift
In this lesson you will learn the fundamental difference between structs and classes by understanding value types and reference types. Today's guest @itsdamslife You can reach out to me @gouravnayyar
2019-01-28
10 min
The iOS Dev Podcast
006 Access Specifier | Objective C
In this session we will talk about access specifier in objective c. What are the possibilities when we use, - Public - Private - Protected with instance variables and methods. How would this all make sense when we design an App or a framework. Today's guest list, @Vasu_N (twitter) @itsdamslife (twitter) If you have questions or clarifications. Please reach out to me at @gouravnayyar (twitter)
2019-01-25
09 min
The iOS Dev Podcast
005 - Stack Vs Heap | Swift
This podcast outline the basics of stack and heap memory and the question and answers regarding the topic
2019-01-23
07 min
The iOS Dev Podcast
004 - Reference and Value types | Swift
This session would cover the topic of value and reference type in swift with some real world example. Classes and struct are value types or reference type and their behavior.
2019-01-19
04 min
The iOS Dev Podcast
003 - SINGLE SIGN ON - SSO
This podcast outlines the detail explanation of SSO - Single Sign On. We would be taking an example of GOOGLE ECOSYSTEM.
2019-01-15
06 min
The iOS Dev Podcast
002 - Access Controls | Swift
In this podcast we are going to talk about Access control. In Swift we have, 1. open, 2. public, 3. internal, 4. fileprivate, and 5. private for access control. Host: Gourav Nayyar https://youtube.com/gouravnayyar Music: https://bensound.com
2019-01-12
10 min
The iOS Dev Podcast
001 - SOLID Design Principles | Swift
In this episode we are going to discuss about SOLID Design principles. S: Single Responsibility Principle O: Open and Closed Principle L: Liskov's Substitution Principle I: Interface Segregation Principle D: Dependency Inversion Principle & Use of protocols. Music: https://www.bensound.com SOLID Principle Article https://medium.com/@vinodhswamy/solid-principles-in-swift-7dc2b793fd68
2019-01-12
49 min