IOS Dev 公开
[search 0]
更多
Download the App!
show episodes
 
Artwork
 
iOS Dev Break: 15 minutes of current events, tips, and advice for iOS Developers! Including, but not limited to, discussions of Swift, iOS, watchOS, and tvOS development.
  continue reading
 
Artwork

1
Inside iOS Dev

Alex Bush, Sandeep Aggarwal

Unsubscribe
Unsubscribe
每月
 
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.
  continue reading
 
Loading …
show series
 
We're back! Evan relates what he can about his experience with the Apple Vision Pro labs held at Apple, and discusses the Apple September "Wonderlust" Event and the Swift Remote Studio viewing party taking place that morning! Show Links Inside the Apple Vision Pro labs Swift Remote Studio Apple September "Wonderlust" Event…
  continue reading
 
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 t…
  continue reading
 
WWDC 2023 is next week! In this episode, Evan shares a couple of the things that he would like to see from next week's Keynote and SwiftUI. Also a quick tip to prepare for next week's event, and a Swift Remote Studio watch party! Show Links Apple Developer App Bookmark Removal - Leo G. Dion Twitter Post DetailsPro - Apple App Store Anticipation and…
  continue reading
 
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 …
  continue reading
 
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 st…
  continue reading
 
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…
  continue reading
 
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 upcom…
  continue reading
 
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 prepar…
  continue reading
 
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/syst…
  continue reading
 
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) - V…
  continue reading
 
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 …
  continue reading
 
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 it…
  continue reading
 
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: …
  continue reading
 
We are back! In this episode, we'll explore some benefits of SwiftUI and see how you can improve your skills in simple ways. Also a productivity tip/pick for helping you create and export all the app icons you need for your app! Show Links Apply Pixels iOS 14 Icon Template How to use the iOS App Icon Template for Sketch Swipe up to bring up the doc…
  continue reading
 
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 exp…
  continue reading
 
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…
  continue reading
 
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 cours…
  continue reading
 
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 sw…
  continue reading
 
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_VTSiGUEh…
  continue reading
 
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/syst…
  continue reading
 
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://iosintervi…
  continue reading
 
In this episode: Do App Clips have a place in the iOS ecosystem? Can SwiftUI improve productivity? Clicking and dragging got you down? Listen and find out more! Show Links Transformation Apps Website Cult of Mac - App Clips and Phoenix 2 Phoenix 2 - Official Site (with App Clip) Jesse Squires - How to fix the incomprehensible tabs in Xcode 12 Suppo…
  continue reading
 
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 …
  continue reading
 
In this episode: Migrating away from storyboards, app delegate, and table views. Swift on Windows! IoT with Swift! Also, dealing with Apple's requirements for review when it comes down to you versus the HIG. Show Links Transformation Apps Website Introducing Swift on Windows MadMachine - SwiftIO RECaf - Effortless Caffeine Tracking Support the Show…
  continue reading
 
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 prep…
  continue reading
 
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.c…
  continue reading
 
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/gouravnayyarTwitter; https://twitter.com/gouravnayyarHelpful resources: https://www.pluralsight.com/gu…
  continue reading
 
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 T…
  continue reading
 
In this epsisode: Fabric is shutting down—is it time to make the jump to Firebase? Support indie developers during the coronavirus pandemic! WWDC 2020 goes remote? Show Links CocoaHub App iOS Dev Weekly Apple Developer - Deadline for App Updates Has Been Extended Indie Support Weeks in the Apple Developer Community Apple Developer - WWDC20 Reveal b…
  continue reading
 
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 …
  continue reading
 
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 Engi…
  continue reading
 
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://r…
  continue reading
 
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/32862If you are interested in know more details, do check the forum link. It is filled with more details and comments.Today I have wi…
  continue reading
 
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 w…
  continue reading
 
In this episode: The perils of migrating from Swift 2 to Swift 5, plus two excellent picks to help you keep your edge as an iOS developer! Show Links Hacking with Swift - Xcode in 20 Seconds Parallels How to upgrade to macOS High Sierra Run older versions of Mac OS X seamlessly with macOS Sierra Apple has locked me out of my developer account Cocoa…
  continue reading
 
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/insideiosde…
  continue reading
 
Another version of Xcode released? Learn how to wrangle the rapid-fire releases of Apple's development tools. Show Links ATP - No One Else Had Calipers iPhreaks Podcast 277: 100 Days of SwiftUI with Paul Hudson Independence Podcast iOS Developer Tips - Managing Multiple Versions of Xcode 9to5Mac.com - PSA: Apple releases critical Xcode 11.2.1 updat…
  continue reading
 
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…
  continue reading
 
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 sim…
  continue reading
 
Loading …

快速参考指南