Still using it when updating my apps written pre swift but 100% Swift now (not SwiftUI though) https://www.appblit.com/
Ask HN: How many of you Apple developers still use Objective C?
31–40 of 160 posts
Re: Ask HN: How many of you Apple developers still use Objective C?
#32I use Objective-C exclusively (no Swift) in my App Store apps. I wrote a Swift app for a hobby/free project a few years ago and regretted it. They changed the language and deprecated some of my code, which isn't easily replaceable without a significant rewrite. The project now compiles only in Swift 4 and will die when Swift 4 support is removed from Xcode. I see no reason to use Swift. The compiler is slower and bug…
You’ll have an increasingly harder time adopting new Swift-only APIs For example OCR - you can use the old low quality Vision API but the new ImageAnalyzer can’t be accessed via ObjC and requires custom bridging. More and more new APIs will be Swift exclusive
Re: Ask HN: How many of you Apple developers still use Objective C?
#33I write my Apple stuff exclusively in Swift, and don't bridge to C. I have been doing that, since 2014. Before that, I wrote in ObjC.
I still use UIKit/AppKit/WatchKit for my shipping apps, though. I do not believe that SwiftUI is ready yet, for the scope of my work (I just tried again, this week, and it's still a nope).
Re: Ask HN: How many of you Apple developers still use Objective C?
#34Re: Ask HN: How many of you Apple developers still use Objective C?
#35It's important to note that there's still tons of Objective-C written inside Apple to this day, perhaps more than Swift.
What Apple pushes as what you should be using is often not what they are using internally, FWIW. Third-party developers are its true beta testers.
Re: Ask HN: How many of you Apple developers still use Objective C?
#36(edit: typo)
Re: Ask HN: How many of you Apple developers still use Objective C?
#37I use Objective-C exclusively (no Swift) in my App Store apps. I wrote a Swift app for a hobby/free project a few years ago and regretted it. They changed the language and deprecated some of my code, which isn't easily replaceable without a significant rewrite. The project now compiles only in Swift 4 and will die when Swift 4 support is removed from Xcode. I see no reason to use Swift. The compiler is slower and bug…
Interesting, that hasn't been my experience. I'm curious, what have you ran into that was painful?
Re: Ask HN: How many of you Apple developers still use Objective C?
#38My previous job was all Obj-C at a fairly large and well known company. When I left in 2019 they were beginning to experiment with adding Swift.
I started coding iOS apps around version 5 which was right before the addition of ARC. I've grown to miss the simplicity of Obj-C and have a love/hate relationship with Swift but likely in a few years there won't be much of it left except at big companies who have very old apps.
Re: Ask HN: How many of you Apple developers still use Objective C?
#39I have some stuff that has zero Swift and likely never will. Most other things are a mix.
If I'm writing any ObjC code in a new app today it's probably because either I'm working with some funky low-level API designed for C, my Swift code triggered some kind of compiler bug, or I got pissed off at the way Swift mangles the AppKit or UIKit APIs. Otherwise, I'm probably using Swift for most other things.