Latest Ios programming Podcast Episodes

Inside iOS Dev artwork

Clean Code’s Impact with Uncle Bob

Inside iOS Dev - July 27, 2023 12:00 - 1 hour ★★★★★ - 54 ratings
In this episode we have legendary Robert Uncle Bob Martin come over to talk about Clean Code, professionalism, and courage. We cover: - the impact of Clean Code on businesses' ability to change software and make money - management pushback on applying Clean Code practices and how to handle it - ...

Inside iOS Dev artwork

iOS Interview Tips from Engineering Manager and Senior Engineers

Inside iOS Dev - April 04, 2023 02:15 - 1 hour ★★★★★ - 54 ratings
Sandeep and Alex talk to Aaina Jain and Muralidharan Kathiresan about interviewing in current layoffs prone market, interview stages and tips to be more successful in each. Aaina's medium: https://medium.com/@aainajain Murali:  https://unknowndefault.com/ https://topmate.io/murali_k https://ww...

Inside iOS Dev artwork

WWDC 2022 Devs Reaction

Inside iOS Dev - June 29, 2022 14:25 - 1 hour ★★★★★ - 54 ratings
In this episode Alex and Sandeep react to WWDC 2022 Platform State of The Union. This is our very raw, unresearched reaction/opinion on what we heard on latest WWDC changes for iOS development. Some things are just emotions and unfiltered opinions, some are things we already looked into. We'll ...

Inside iOS Dev artwork

Top 10 iOS Dev Tips

Inside iOS Dev - May 15, 2022 20:29 - 9 minutes ★★★★★ - 54 ratings
Alex and Sandeep share 10 iOS development tips that you can add to your knowledge base in less than 10 minutes for a better development experience.   Sign up for Alex's upcoming video course about iOS System Design Interview: https://iosinterviewguide.com/system-design-interview Need to prepa...

Inside iOS Dev artwork

Blocked by the backend? Use prod mocks.

Inside iOS Dev - March 29, 2022 12:48 - 13 minutes ★★★★★ - 54 ratings
In this episode Sandeep and Alex showcase how mocks can be used in production code to substitute upcoming unfinished or unreleased backend changes. They use dependency injection and Liskov Substitution Principle to inject a service object implementation that uses local hardcoded data instead of ...

Inside iOS Dev artwork

Generating Mocks with Sourcery

Inside iOS Dev - February 26, 2022 17:18 - 16 minutes ★★★★★ - 54 ratings
Alex and Sandeep introduce Swift Sourcery, a code generation tool to automatically create mock implementations for interfaces in your code. Sourcery on github: https://github.com/krzysztofzablocki/Sourcery    Sign up for Alex's upcoming video course about iOS System Design Interview: https://...

Inside iOS Dev artwork

Refactoring Large Initializer in Swift. Part 1. Dependency Injection with Default Values and Properties.

Inside iOS Dev - October 23, 2021 12:00 - 25 minutes ★★★★★ - 54 ratings
In this episode Sandeep and Alex refactor a class with a large initializer into something easier to use. This is part one of this series. Sample code was taken from Fred’s tweet: https://twitter.com/frederickohen/status/1413595709471875072 Sign up for Alex's upcoming video course about iOS Sys...

Inside iOS Dev artwork

RIBs. The Best iOS Architecture.

Inside iOS Dev - September 26, 2021 22:20 - 1 hour ★★★★★ - 54 ratings
RIBs Resources: - [Original RIB repository](https://github.com/uber/RIBs) - [Uber RIB wiki](https://github.com/uber/RIBs/wiki) - General video: [Uber's new mobile architecture that scales to hundreds of engineers by Tuomas Artman](https://youtube.com/watch?v=FfwZSk6VRVY) - Video 1: [Architec...

Inside iOS Dev artwork

Developers/Designers Therapy Session with Michael DeGothsier and Sandeep Aggarwal

Inside iOS Dev - August 28, 2021 17:07 - 41 minutes ★★★★★ - 54 ratings
Alex and Sandeep talk to Michael DeGothsier about challenges developers and designers face working with each other and what approaches and perspectives they might take to improve collaboration. Sandeep's twitter: https://twitter.com/sandeepCool77 New Inside iOS Dev YouTube channel: https://www...

Inside iOS Dev artwork

2 Ways to Implement VIPER iOS Architecture with its author Jeff Gilbert

Inside iOS Dev - August 14, 2021 23:42 - 1 hour ★★★★★ - 54 ratings
Alex and Sandeep talk to Jeff Gilbert, the author of VIPER architecture, about evolving understanding of VIPER, complex VIPER apps and compare different way to understand and implement VIPER on projects of all sizes. VIPER Architecture Diagram from the web: https://1drv.ms/u/s!AneU_VTSiGUE5Rvln...

Inside iOS Dev artwork

Swift Optional String Or Empty Extension

Inside iOS Dev - July 20, 2021 03:42 - 7 minutes ★★★★★ - 54 ratings
In this episode I walk you through how to create an extension on Optional String type to default nil strings to an empty string. This little shortcut can greatly reduce the amount of ifelsing and if let unwrapping on optional strings in your Swift codebase. This episode's video screencast: http...

Inside iOS Dev artwork

Youtube Channel Announcement

Inside iOS Dev - June 30, 2021 03:50 - 3 minutes ★★★★★ - 54 ratings
I'm transitioning to Youtube! Don't worry, the podcast is not over :) I'll be making more and more screencast style videos instead of just audio podcast format. I'll still be having guest over and have conversations with them about the code and I'll be cross posting screencast episodes on the po...

Inside iOS Dev artwork

Builder Design Pattern in Swift with Sandeep Aggarwal

Inside iOS Dev - May 31, 2021 21:03 - 24 minutes ★★★★★ - 54 ratings
Alex talks to Sandeep Aggarwal about Builder design pattern. They talk about use cases where the pattern is most applicable and how the implementation they made turned out. Sandeep's Twitter https://twitter.com/sandeepCool77 Screencast covering Builder design pattern implementation in Swift ca...

Inside iOS Dev artwork

Saga of The Bug in Collapsing Navigation Bar in Scrolling View

Inside iOS Dev - April 30, 2021 03:36 - 36 minutes ★★★★★ - 54 ratings
Alex talks about unexpected bugs he encountered with the new iOS release and how replacing a 3rd party library with a built-in Apple implementation is not always the silver bullet. Sign up for Alex's upcoming video course about iOS System Design Interview: https://iosinterviewguide.com/system-d...

Inside iOS Dev artwork

How to Determine Visibility of a View Controller

Inside iOS Dev - March 29, 2021 00:13 - 34 minutes ★★★★★ - 54 ratings
Alex talks about unexpected intricacies and complexities he encountered trying to determine if a given view controller is visible trying to refresh data every time the user sees it. This seems like an overkill but it is more complex then you'd expect. Table of states and viewDidAppear/Foregroun...

Inside iOS Dev artwork

Unit-testing 101

Inside iOS Dev - November 29, 2020 22:04 - 15 minutes ★★★★★ - 54 ratings
Alex gives an introduction to unit-testing on iOS. He talks about what unit-testing is, how unit-tests are structured, and best practices on organizing your test code. He also touches upon mocking/stubbing and testing side effects as well. Sign up for Alex's upcoming video course about iOS Syst...

Inside iOS Dev artwork

Protected Visibility Modifier in Swift

Inside iOS Dev - November 08, 2020 04:48 - 16 minutes ★★★★★ - 54 ratings
Daniel Hall and Alex talk about protected visibility modifier in objective oriented languages and how they wish it was added to Swift language. They talk about reasons for why it is needed and what workarounds you could use to achieve semi-similar result. Default description/shownotes ...

Inside iOS Dev artwork

Protected Visibility Modifier in Swift with Daniel Hall

Inside iOS Dev - November 08, 2020 04:48 - 16 minutes ★★★★★ - 54 ratings
Daniel Hall and Alex talk about protected visibility modifier in objective oriented languages and how they wish it was added to Swift language. They talk about reasons for why it is needed and what workarounds you could use to achieve semi-similar result. Sign up for Alex's upcoming video cours...

Inside iOS Dev artwork

Why I wasn't recording all this time? The Truth Exposed.

Inside iOS Dev - October 25, 2020 19:53 - 8 minutes ★★★★★ - 54 ratings
Alex talks about why he’s been missing in action and haven’t published any podcast episodes in a while. Sign up for Alex's upcoming video course about iOS System Design Interview: https://iosinterviewguide.com/system-design-interview Sign up for Alex's upcoming video course about RIBs Architect...

Inside iOS Dev artwork

Law of Demeter, Async Programming, Naming Things with Tom Mornini

Inside iOS Dev - July 08, 2020 14:27 - 46 minutes ★★★★★ - 54 ratings
LinkedIn Law Of Demeter thread Twitter Law Of Demeter thread Tom on Twitter Tom on LinkedIn Sign up for Alex's upcoming video course about iOS System Design Interview: https://iosinterviewguide.com/system-design-interview Sign up for Alex's upcoming video course about RIBs Architecture: htt...

Inside iOS Dev artwork

Data Observation in SwiftUI with Dainel Hall

Inside iOS Dev - June 08, 2020 14:55 - 51 minutes ★★★★★ - 54 ratings
Alex talks to Daniel Hall about SwiftUI data observation, Environment, EnvironmentObject, ObservableObject, and State. Daniel is an iOS architect at Wayfair. Environment EnvironmentObject ObservableObject State Daniel Hall on Twitter @_danielhall Sign up for Alex's upcoming video course ab...

Inside iOS Dev artwork

iOS Interview Questions For Senior Developers in 2020 Part 2

Inside iOS Dev - April 27, 2020 15:00 - 15 minutes ★★★★★ - 54 ratings
Alex continues to cover his article iOS Interview Questions For Senior Developers in 2020. In this episode he covers questions: What is MVC? What do you know about singletons? Where would you use one and where would you not? What’s different between delegate and KVO? Links: iOS Interview Qu...

Inside iOS Dev artwork

iOS Interview Questions For Senior Developers in 2020 Part 1

Inside iOS Dev - April 13, 2020 15:00 - 15 minutes ★★★★★ - 54 ratings
Alex talks about an article he recently published - "iOS Interview Questions For Senior Developers in 2020" He covers first 3 questions from the article: What are the main features and advantages or disadvantages of Swift? What is an iOS application and where does your code fit into it? How ...

Inside iOS Dev artwork

iOS System Design Interview

Inside iOS Dev - March 30, 2020 14:52 - 19 minutes ★★★★★ - 54 ratings
Alex talks about iOS system design interview, what to expect, what's important to focus on and what complexity a potential e-commerce application might have. The iOS System Design Interview Video Course Sign up for Alex's upcoming video course about RIBs Architecture: http://ribsarchitecture.c...

Inside iOS Dev artwork

VIPER with Jeff Gilbert

Inside iOS Dev - February 25, 2020 13:00 - 57 minutes ★★★★★ - 54 ratings
Alex talks to Jeff Gilbert about VIPER architecture, how it came to be and how this architecture helps scale iOS codebases. Jeff is the author of VIPER. This episode sponsor is healr.io Jeff's twitter @heyjeffg Architecting iOS Apps with VIPER (objc.io) https://literati.com/ Sign up for Al...

Inside iOS Dev artwork

Asynchronous Work on iOS (Combine Edition) with Leo Dion

Inside iOS Dev - January 27, 2020 14:50 - 31 minutes ★★★★★ - 54 ratings
Alex interviews Leo Dion about his recent article Asynchronous Multi-Threaded Parallel World of Swift. They talk about async work on iOS, options developers had previously (from low level to high), and then discuss how new Apple frameworks Swift Nio and Combine helps solve asynchronous tasks on ...

Inside iOS Dev artwork

Protocol Extension Overuse

Inside iOS Dev - November 27, 2019 03:42 - 24 minutes ★★★★★ - 54 ratings
Alex explains how overusing extensions and protocol extensions in Swift leads to unpredictable runtime bugs. Sign up for Alex's upcoming video course about RIBs Architecture: http://ribsarchitecture.com/video-course-waitlist Need to prepare for an iOS Engineer Interview? https://iosinterviewgui...

Inside iOS Dev artwork

Optionals Are Evil..?

Inside iOS Dev - October 28, 2019 15:06 - 13 minutes ★★★★★ - 54 ratings
https://twitter.com/_ivancr/status/1180199237398626304?s=20 Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com Connect with us: https://twitter.com/insideiosdev Email us at [email protected]

Inside iOS Dev artwork

Flutter with Rody Davis

Inside iOS Dev - October 07, 2019 14:58 - 35 minutes ★★★★★ - 54 ratings
Alex interviews Rody Davis about Flutter, a cross platform framework for iOS and Android development. They also address cross platform development issues Dropbox experienced with their mobile apps. Dropbox drops mobile cross platform C++ Flutter Dropbox's cross platform C++ issues article Ro...

Inside iOS Dev artwork

Cross-platform code sharing via C++ at Dropbox with Eyal Guthmann

Inside iOS Dev - September 19, 2019 14:00 - 43 minutes ★★★★★ - 54 ratings
Recently, Dropbox published a blog illustrating the costs & overhead of using C++ to code share between iOS and Android. The author, Eyal Guthmann from Dropbox, joins us to elaborate more on the topic. Was the problem C++? Why couldn't Dropbox simply hire more C++ developers? Why not React Nativ...

Related Ios programming Topics