Ask HN: How many of you Apple developers still use Objective C?
1–10 of 160 posts
Re: Ask HN: How many of you Apple developers still use Objective C?
#2The common wisdom was; nobody will take you seriously as an engineer unless you learn Objective-C. I was also trying to understand the book "High Performance iOS Apps", all in ObjC, so had to take a lengthy segue through an ObjC tutorial book.
While this was useful for expanding my horizons somewhat, I have never in my career had to use ObjC in production.
I have, however, used it a little in the last 6 months, though ironically this was when writing a blog post about Apple's Animation APIs through history - to ensure I was authentic, I wrote the Quartz, OpenGL, and CoreAnimation sections in Objective-C. To this date, this is the only ObjC I have written which has done anything of value.
The blog post is here - https://jacobbartlett.substack.com/p/through-the-ages-apple-... The GitHub project is here (all open source!) - https://github.com/jacobsapps/animation-through-the-ages
Re: Ask HN: How many of you Apple developers still use Objective C?
#3I make the bridges from Cordova to Swift using Objective C wrappers around functions, but choose to write the actual implementations in Swift. Kind of like I code HTTP handlers as the "controller", and then call from there to PHP classes as a "model".
Re: Ask HN: How many of you Apple developers still use Objective C?
#4Though in the FAANG world - Objective C reigns supreme
Re: Ask HN: How many of you Apple developers still use Objective C?
#5I use Objective C. And I'm a Web Developer, but I learned it years ago and still use it because Cordova uses it. I make the bridges from Cordova to Swift using Objective C wrappers around functions, but choose to write the actual implementations in Swift. Kind of like I code HTTP handlers as the "controller", and then call from there to PHP classes as a "model".
Re: Ask HN: How many of you Apple developers still use Objective C?
#6Re: Ask HN: How many of you Apple developers still use Objective C?
#7Objective-C gets a bad wrap (unfairly, IMO), but it's a neat language, and compilation is so much faster than Swift.
Re: Ask HN: How many of you Apple developers still use Objective C?
#8Sometimes an old code sample is only available in ObjC. Sometimes you need to interop with a legacy API that wasn’t bridged cleanly. Sometimes it’s helpful to fiddle at runtime in debugging.
It’s kind of like how you probably shouldn’t write C nowadays, but C is still an important language every developer should be able to navigate.