Home
Categories
EXPLORE
True Crime
Comedy
Society & Culture
Business
Sports
Technology
Health & Fitness
About Us
Contact Us
Copyright
© 2024 PodJoint
Podjoint Logo
US
00:00 / 00:00
Sign in

or

Don't have an account?
Sign up
Forgot password
https://is1-ssl.mzstatic.com/image/thumb/Podcasts125/v4/cb/e1/49/cbe1494f-9bd0-e390-826b-ac5a35e19c21/mza_12537978589408760567.jpg/600x600bb.jpg
Inside iOS Dev
Alex Bush, Sandeep Aggarwal
87 episodes
9 months ago
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.
Show more...
Technology
Education
RSS
All content for Inside iOS Dev is the property of Alex Bush, Sandeep Aggarwal and is served directly from their servers with no modification, redirects, or rehosting. The podcast is not affiliated with or endorsed by Podjoint in any way.
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.
Show more...
Technology
Education
Episodes (20/87)
Inside iOS Dev
Clean Code’s Impact with Uncle Bob
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 legacy (and not legacy) code - code ownership and pair programming - following the code rules you establish - a rapid questions round - ask listeners' questions - and much more
Show more...
2 years ago
1 hour 20 minutes 32 seconds

Inside iOS Dev
iOS Interview Tips from Engineering Manager and Senior Engineers
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.
Show more...
2 years ago
1 hour 17 minutes 31 seconds

Inside iOS Dev
WWDC 2022 Devs Reaction
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://developer.apple.com/videos/play/wwdc2022/102/
Show more...
3 years ago
1 hour 17 minutes 38 seconds

Inside iOS Dev
Top 10 iOS Dev Tips
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.
Show more...
3 years ago
9 minutes 43 seconds

Inside iOS Dev
Blocked by the backend? Use prod mocks.
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.
Show more...
3 years ago
13 minutes 8 seconds

Inside iOS Dev
Generating Mocks with Sourcery
Alex and Sandeep introduce Swift Sourcery, a code generation tool to automatically create mock implementations for interfaces in your code.
Show more...
3 years ago
16 minutes 6 seconds

Inside iOS Dev
Refactoring Large Initializer in Swift. Part 1. Dependency Injection with Default Values and Properties.
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
Show more...
4 years ago
25 minutes 6 seconds

Inside iOS Dev
RIBs. The Best iOS Architecture.
Alex Bush and Franz Busch give an overview of RIBs architecture on iOS.
Show more...
4 years ago
1 hour 4 minutes 20 seconds

Inside iOS Dev
Developers/Designers Therapy Session with Michael DeGothsier and Sandeep Aggarwal
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.
Show more...
4 years ago
41 minutes 46 seconds

Inside iOS Dev
2 Ways to Implement VIPER iOS Architecture with its author Jeff Gilbert
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.
Show more...
4 years ago
1 hour 6 minutes 8 seconds

Inside iOS Dev
Swift Optional String Or Empty Extension
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/UC6zcA3dAMUWN8E2_dlg_WyQ
Show more...
4 years ago
7 minutes 7 seconds

Inside iOS Dev
Youtube Channel Announcement
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 find the channel here https://www.youtube.com/channel/UC6zcA3dAMUWN8E2_dlg_WyQ Please share, like, and subscribe to it as it will greatly help me get this channel up and running. Hope to see and hear your feedback and have better content quality there. Let me know what you think and I'm looking forward to hearing from you!
Show more...
4 years ago
3 minutes 3 seconds

Inside iOS Dev
Builder Design Pattern in Swift with Sandeep Aggarwal
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.
Show more...
4 years ago
24 minutes 14 seconds

Inside iOS Dev
Saga of The Bug in Collapsing Navigation Bar in Scrolling View
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.
Show more...
4 years ago
36 minutes 25 seconds

Inside iOS Dev
How to Determine Visibility of a View Controller
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.
Show more...
4 years ago
34 minutes 6 seconds

Inside iOS Dev
Unit-testing 101
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.
Show more...
4 years ago
15 minutes 54 seconds

Inside iOS Dev
Protected Visibility Modifier in Swift with Daniel Hall
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.
Show more...
4 years ago
16 minutes 28 seconds

Inside iOS Dev
Why I wasn't recording all this time? The Truth Exposed.
Alex talks about why he’s been missing in action and haven’t published any podcast episodes in a while.
Show more...
5 years ago
8 minutes 10 seconds

Inside iOS Dev
Law of Demeter, Async Programming, Naming Things with Tom Mornini
Alex talks to Tom Mornini about the Law of Demeter and asynchronous programming, Go language, inexperienced developers, SOLID principles, MVC, Ruby on Rails, naming things, polymorphism, and much more.
Show more...
5 years ago
46 minutes 7 seconds

Inside iOS Dev
Data Observation in SwiftUI with Dainel Hall
Alex talks to Daniel Hall about SwiftUI data observation, Environment, EnvironmentObject, ObservableObject, and State. Daniel is an iOS architect at Wayfair.
Show more...
5 years ago
51 minutes 4 seconds

Inside iOS Dev
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.