Inside iOS Dev artwork

Inside iOS Dev

88 episodes - English - Latest episode: 9 months ago - ★★★★★ - 54 ratings

Inside iOS dev is a weekly show about real world iOS development. Your hosts, Alex Bush and Sandeep Aggarwal, draw from their experiences ranging from 4+ year old legacy codebases, to small startup green field projects, to working on apps at places like Uber, Wayfair, and Upkeep with millions of active users. They discuss everything from implementing specific features, to creating flexible designs, to utilizing refactoring techniques, and more. This is THE show for professional iOS developers.

Technology Education ios ios development swift objective-c software architecture ios programming
Homepage Apple Podcasts Google Podcasts Overcast Castro Pocket Casts RSS feed

Episodes

Clean Code’s Impact with Uncle Bob

July 27, 2023 12:00 - 1 hour - 73.7 MB

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 - how managers get to the truth and how developers get to the truth - professionalism, courage to take risk and saying NO despite potentially being fired - writing tests to reduce risks working with leg...

iOS Interview Tips from Engineering Manager and Senior Engineers

April 04, 2023 02:15 - 1 hour - 71 MB

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://www.linkedin.com/in/muralidharankathiresan/ Prepping for a system design interview? Check out Alex's iOS System Design Interview: video course: https://iosinterviewguide.com/system-design-interview Ne...

WWDC 2022 Devs Reaction

June 29, 2022 14:25 - 1 hour - 71.1 MB

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 be doing deep dives in other videos into some of the stuff we covered that we're not sure or don't know much about or stuff that deserves more attention. You can find the video we covered here: https...

Top 10 iOS Dev Tips

May 15, 2022 20:29 - 9 minutes - 9.43 MB

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 prepare for an iOS Engineer Interview? https://iosinterviewguide.com Connect with us: https://twitter.com/insideiosdev Email us at [email protected]

Blocked by the backend? Use prod mocks.

March 29, 2022 12:48 - 13 minutes - 12.6 MB

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 fetching it from the network. Sign up for Alex's upcoming video course about iOS System Design Interview: https://iosinterviewguide.com/system-design-interview Need to prepare for an iOS Engineer In...

Generating Mocks with Sourcery

February 26, 2022 17:18 - 16 minutes - 15 MB

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://iosinterviewguide.com/system-design-interview  Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com  Connect with us: https://twitter.com/insideiosdev  Email us at hello@ins...

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

October 23, 2021 12:00 - 25 minutes - 23 MB

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 System Design Interview: https://iosinterviewguide.com/system-design-interview Sign up for Alex's upcoming video course about RIBs Architecture: http://ribsarchitecture.com/video-course-waitlist Need t...

RIBs. The Best iOS Architecture.

September 26, 2021 22:20 - 1 hour - 58.9 MB

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: [Architecture rewrite](https://youtube.com/watch?v=bB9e7ZYVYCo) - Video 2: [Deep Scope Hierarchies](https://youtube.com/watch?v=LWu1HcFIRnQ) - Video 3: [Introduction to RIBs](https://youtube.com/watch?v=Q5cT...

Developers/Designers Therapy Session with Michael DeGothsier and Sandeep Aggarwal

August 28, 2021 17:07 - 41 minutes - 38.2 MB

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.youtube.com/c/InsideiOSDev Sign up for Alex's upcoming video course about iOS System Design Interview: https://iosinterviewguide.com/system-design-interview Need to prepare for an iOS Engineer Inte...

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

August 14, 2021 23:42 - 1 hour - 60.5 MB

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_VTSiGUE5Rvln8cBdVj0Ztja?e=IWt1hn VIPER Architecture Diagram from its author Jeff Gilbert: https://1drv.ms/b/s!AneU_VTSiGUE5R9MBCMLgr8talep?e=z87kEG Diagram of two ways of implementing VIPER: https://1drv.ms/u/s...

Swift Optional String Or Empty Extension

July 20, 2021 03:42 - 7 minutes - 6.52 MB

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: https://youtu.be/qzuFvUVuH9U This episode's audio podcast: https://insideiosdev.com/episodes/swift-optional-string-or-empty-extension Inside iOS Dev YouTube Channel: https://www.youtube.com/channel/UC6z...

Youtube Channel Announcement

June 30, 2021 03:50 - 3 minutes - 2.79 MB

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 podcast as well.   This new direction will allow me to explain the concepts and showcase the code examples better as the audio format can only do so much.   Please hop on over to Youtube. You can fi...

Builder Design Pattern in Swift with Sandeep Aggarwal

May 31, 2021 21:03 - 24 minutes - 22.2 MB

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 can be found here https://youtu.be/EhT-sMo9gJs The article used to research on Builder Design Pattern: https://refactoring.guru/design-patterns/builder If you want to learn more about design patterns ...

Saga of The Bug in Collapsing Navigation Bar in Scrolling View

April 30, 2021 03:36 - 36 minutes - 33.3 MB

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-design-interview 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://iosinterviewg...

How to Determine Visibility of a View Controller

March 29, 2021 00:13 - 34 minutes - 31.2 MB

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/Foreground notification calls: https://1drv.ms/u/s!AneU_VTSiGUEh2kmJVH376QmUG79?e=X13rSQ Sign up for Alex's upcoming video course about iOS System Design Interview: https://iosinterviewguide.com/system-design...

Unit-testing 101

November 29, 2020 22:04 - 15 minutes - 14.6 MB

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 System Design Interview: https://iosinterviewguide.com/system-design-interview Sign up for Alex's upcoming video course about RIBs Architecture: http://ribsarchitecture.com/video-course-waitlist Need to p...

Protected Visibility Modifier in Swift with Daniel Hall

November 08, 2020 04:48 - 16 minutes - 15.1 MB

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 course about iOS System Design Interview: https://iosinterviewguide.com/system-design-interview Sign up for Alex's upcoming video course about RIBs Architecture: http://ribsarchitecture.com/video-course-wa...

Protected Visibility Modifier in Swift

November 08, 2020 04:48 - 16 minutes - 15.1 MB

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 at the end:Sign up for Alex's upcoming video course about iOS System Design Interview: https://iosinterviewguide.com/system-design-interviewSign up for Alex's upcoming video course about RIBs Architec...

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

October 25, 2020 19:53 - 8 minutes - 7.65 MB

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 Architecture: http://ribsarchitecture.com/video-course-waitlist Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com Connect with us: https://twitter.com/insideiosdev Email us at hello@...

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

July 08, 2020 14:27 - 46 minutes - 42.4 MB

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: http://ribsarchitecture.com/video-course-waitlist Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com Connect with us: https://twitter.com/insideiosdev Email us at hello@insideio...

Data Observation in SwiftUI with Dainel Hall

June 08, 2020 14:55 - 51 minutes - 46.9 MB

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 about iOS System Design Interview: https://iosinterviewguide.com/system-design-interview Sign up for Alex's upcoming video course about RIBs Architecture: http://ribsarchitecture.com/video-course-waitli...

iOS Interview Questions For Senior Developers in 2020 Part 2

April 27, 2020 15:00 - 15 minutes - 13.9 MB

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 Questions for Senior Developers in 2020 article Alex's book The iOS Interview Guide Systems Design Interview Course Submit interview questions you want me to answer here: https://iosinterviewguide.co...

iOS Interview Questions For Senior Developers in 2020 Part 1

April 13, 2020 15:00 - 15 minutes - 14.2 MB

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 is memory management handled in iOS? Links: iOS Interview Questions for Senior Developers in 2020 Article Alex's book The iOS Interview Guide Want one of your interview questions answered on podca...

iOS System Design Interview

March 30, 2020 14:52 - 19 minutes - 18.1 MB

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.com/video-course-waitlist Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com Connect with us: https://twitter.com/insideiosdev Email us at [email protected]

VIPER with Jeff Gilbert

February 25, 2020 13:00 - 57 minutes - 52.6 MB

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 Alex's upcoming video course about RIBs Architecture: http://ribsarchitecture.com/video-course-waitlist Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com Connect with us: ht...

Asynchronous Work on iOS (Combine Edition) with Leo Dion

January 27, 2020 14:50 - 31 minutes - 29.2 MB

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 iOS. Unfortunately the chat transcript for this call was lost and some of the links didn't make it into show notes. Leo's article - Asynchronous Multi-Threaded Parallel World of Swift Leo's 360 iDe...

Protocol Extension Overuse

November 27, 2019 03:42 - 24 minutes - 22.3 MB

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://iosinterviewguide.com Connect with us: https://twitter.com/insideiosdev Email us at [email protected]

Optionals Are Evil..?

October 28, 2019 15:06 - 13 minutes - 12.6 MB

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]

Flutter with Rody Davis

October 07, 2019 14:58 - 35 minutes - 33.1 MB

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 Rody on Twitter Rody's website Rody's Github Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com Connect with us: https://twitter.com/insideiosdev Email us at hello@insideios...

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

September 19, 2019 14:00 - 43 minutes - 40.1 MB

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 Native or Flutter? Is cross platform mobile development simply not viable? Interested in C++ or mobile development? Dropbox is hiring! Dropbox C++ drop article Running into problems with shared cross pl...

VIPER First Impressions

September 09, 2019 15:00 - 32 minutes - 29.9 MB

Alex talks about his first impressions working with VIPER architecture. He walks through each part of the architecture, compares it to RIBs, and talks about modularization. Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com Connect with us: https://twitter.com/insideiosdev Email us at [email protected]

Dropbox drops mobile cross platform C++

August 26, 2019 14:54 - 22 minutes - 20.5 MB

Alex and Andrew discuss the latest Dropbox engineering article that announced that Dropbox is dropping their support of cross platform mobile C++ code. Dropbox C++ drop article Running into problems with shared cross platform code in JavaScript is the episode where Alex talked about cross platform code shareability issues using Javascript Sunsetting React Native Airbnb article announcing that they are dropping React Native We're looking for help editing and prepping our episodes for re...

Vapor with Leo Dion

July 23, 2019 17:18 - 31 minutes - 29.3 MB

Alex talks with Leo Dion about Server Side Swift and Vapor. Leo's twitter Leo's company Leo's Vapor getting started blog post http://learningswift.brightdigit.com/ https://www.empowerapps.show/ https://learningswift.brightdigit.com/vapor-swift-backend-review/ Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com Connect with us: https://twitter.com/insideiosdev Email us at [email protected]

GCD vs RxSwift with Shai Mishali

July 01, 2019 14:50 - 31 minutes - 29.3 MB

Alex and Andrew interview Shai Mishali about advantages of using RxSwift for async operations on iOS instead of Grand Central Dispatch (GCD). Shai's twitter Shai's contributions on Ray Wenderlich website RxSwift: Reactive Programming with Swift (raywenderlich.com book) Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com Connect with us: https://twitter.com/insideiosdev Email us at [email protected]

WWDC 2019 Woes - The pressures & frustrations of ever-changing tech

June 24, 2019 17:01 - 25 minutes - 23.8 MB

Andrew talks about the pressures & frustrations that often accompany the highs of big tech announcements like WWDC.

First thoughts on SwiftUI

June 17, 2019 16:35 - 35 minutes - 32.9 MB

Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com Connect with us: https://twitter.com/insideiosdev Email us at [email protected]

WWDC 2019 First Impressions

June 04, 2019 16:40 - 27 minutes - 25.7 MB

Our first impressions after the first day of WWDC 2019. We go over Marzipan/Catalyst, Swift's new Combine framework, SwiftUI, and other bits that caught our attention. Andrew's AppDevCon conference talk WWDC 2019 Keynote WWDC 2019 State of The Union SwiftUI Combine Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com Connect with us: https://twitter.com/insideiosdev Email us at [email protected]

What we learned giving our first tech conference talks

May 20, 2019 13:35 - 31 minutes - 29 MB

Alex and Andrew explain a bit why they've been out. Then they both talk about the first conference talks they ever gave and what they learned. AppDevCon conference talk in Amsterdam iOS Coding Tips email list #ioscodingtips on Twitter #ioscodingtips on LinkedIn Twitter @InsideiOSDev [email protected]

Asynchronous Frameworks on iOS

March 25, 2019 15:00 - 12 minutes - 11.5 MB

Alex talks about what options you have implementing async work on iOS. He starts with the lowest level of abstraction GCD and goes all the way up to PromiseKit and RxSwift. GCD https://developer.apple.com/documentation/dispatch NSOperations https://developer.apple.com/documentation/foundation/operation https://nshipster.com/nsoperation/ PromiseKit https://github.com/mxcl/PromiseKit RxSwift https://github.com/ReactiveX/RxSwift http://reactivex.io/ Need to prepare for an iOS Engineer Inte...

Overview of Mocks, Stubs, and Fakes

March 14, 2019 16:00 - 10 minutes - 9.84 MB

Alex gives an overview of unit-testing mocks, stubs, and fakes and explains what is the difference between them. Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com/?promo=inside-ios-dev-ref Connect with us: https://twitter.com/insideiosdev

Alex on Uber's RIB Architecture

February 25, 2019 14:30 - 36 minutes - 24.9 MB

Alex talks about working at Uber and what he's learned from their RIB architecture. Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com/?promo=inside-ios-dev-ref Connect with us: https://twitter.com/insideiosdev

Q&A: How to start a career in software engineering after prison

February 05, 2019 14:00 - 22 minutes - 20.5 MB

Alex & Andrew respond to a listener question about starting a career in software engineering. How to choose between a coding bootcamp and university? What should one learn to be a marketable software engineer? What's the best way to learn? What's the market like for mobile software engineers? And more! Wanna chat with other smart iOS developers? Sign up for our free forum: https://forum.insideiosdev.com Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com/?promo=in...

What's new in 2019 plus Alex's new opinion on singletons

January 15, 2019 13:30 - 22 minutes - 21.1 MB

Alex has a change of mind on singletons after previously declaring them always "evil". Also, what's new in 2019 and what we have planned. You can find previous singletons episode here http://insideiosdev.com/dde8a34e Wanna chat with other smart iOS developers? Sign up for our free forum: https://forum.insideiosdev.com Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com/?promo=inside-ios-dev-ref

Andrews "Toast View Model" Struggle

November 12, 2018 13:30 - 31 minutes - 29.2 MB

Andrew talks about his recent design struggle with trying to work both within and maintaining a Model-View-Presenter architecture in the context of pre-existing code. Wanna chat with other smart iOS developers? Sign up for our free forum: https://forum.insideiosdev.com Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com/?promo=inside-ios-dev-ref Connect with us: https://twitter.com/insideiosdev

Q&A: How to design an app for scalability?

October 15, 2018 13:15 - 19 minutes - 18.1 MB

Alex answers a listener question. How does one design an app for scalability?Alex answers a question from a listener that just completed an iOS Engineer interview: How does one design an app for scalability? Wanna chat with other smart iOS developers? Sign up for our free forum: https://forum.insideiosdev.com Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com/?promo=inside-ios-dev-ref Connect with us: https://twitter.com/insideiosdev

The Problems with View Controllers

October 01, 2018 15:04 - 23 minutes - 21.9 MB

Andrew describes & discusses the various problems with view controllers. Find Paul Hudson (@twostraws) at https://www.hackingwithswift.com/ Wanna chat with other smart iOS developers? Sign up for our free forum: https://forum.insideiosdev.com Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com/?promo=inside-ios-dev-ref Connect with us: https://twitter.com/insideiosdev

Evolving Mobile Architecture at Reddit

September 14, 2018 15:57 - 21 minutes - 20.2 MB

Andrew talks about the recent architectural refactoring work he did at Reddit. He explains how the iOS team moved from an MVC architecture to a Model View Presenter (MVP) architecture. He also talks about Texture -- an async layout framework for fast scrolling feeds. This episode was originally recorded March 2018. Wanna chat with other smart iOS developers? Sign up for our free forum: https://forum.insideiosdev.com

Q&A episode: React Native & the cultish force of Javascript

September 02, 2018 19:31 - 27 minutes - 25 MB

We answer a listeners questions. What is the threat/benefit of React Native? What's happening to the job market because of React Native? How do you stay immune to the cultish force of the Javascript religion? What effect will WebAssembly have on web development? Wanna chat with other smart iOS developers? Sign up for our free forum: https://forum.insideiosdev.com Need to prepare for an iOS Engineer Interview? https://iosinterviewguide.com/?promo=inside-ios-dev-ref Connect with us: https:...

Data Structures & Algorithms in Swift with Kelvin Lau & Vincent Ngo

August 22, 2018 12:30 - 15 minutes - 14 MB

Ray Wenderlich authors Kelvin Lau & Vincent Ngo come on the show to discuss their book "Data Structures and Algorithms in Swift". https://store.raywenderlich.com/products/data-structures-and-algorithms-in-swift https://www.raywenderlich.com/1108-join-the-swift-algorithm-club To enter our contest to for a chance to win a free copy of the book tweet what you like about our podcast. We will announce winners in a week or so. Wanna chat with other smart iOS developers? Sign up for our free fo...

John Sundell on Unit Testing

August 01, 2018 12:30 - 32 minutes - 30 MB

We talk with acclaimed iOS & Swift blogger John Sundell about unit testing is. We start out with just unit testing is and then move into details: when & how to do unit testing, tdd, and more! Find John Sundell at https://www.swiftbysundell.com/ Wanna chat with other smart iOS developers? Sign up for our free forum: https://forum.insideiosdev.com Have an iOS Engineer Interview? Learn how to ace it at: https://iosinterviewguide.com/?promo=inside-ios-dev-ref

Twitter Mentions

@insideiosdev 40 Episodes
@sandeepcool77 4 Episodes
@heyjeffg 2 Episodes
@leogdion 2 Episodes
@alex_v_bush 2 Episodes
@insideiosdevema 2 Episodes
@tmornini 1 Episode
@_danielhall 1 Episode
@rodydavis 1 Episode
@freak4pc 1 Episode
@frederickohen 1 Episode
@_ivancr 1 Episode