saagarjha 2 days ago

There is basically no real reason to write an iOS app in C. It won’t perform significantly better.

1
flohofwoe 2 days ago

It really depends on how much ObjC features you use in the performance-sensitive parts of your code base.

If you build your entire code around the ObjC object model and not just the parts that talk to operating system APIs you might see a performance hit since ObjC method calls are simply more expensive than a direct C function call (especially since C function calls can often be inlined)., and even setting or getting an ObjC object property involves a method call.

But since ObjC is also a complete C there's really no point in using more ObjC OOP features than really needed (e.g. just for talking to iOS/macOS framework APIs).