iOS is an operating system for mobile devices developed by Apple Inc. that is currently used in their iPhone, iPod touch, iPad, and Apple TV (2nd generation) devices. It shares a lot with Mac OS X, but is optimized for touch-based interfaces.
5
votes
1answer
96 views
How can I condense several IBAction methods in a class with a delegate?
I have the following class:
MyProtocolClass.h
...
4
votes
1answer
162 views
AVCaptureMetadataOutputObjects Wrapper
With iOS7, Apple introduced AVCaptureMetadataOutputObjects, which is used for scanning barcodes. If you check out the web for how to scan barcodes in iOS, almost ...
3
votes
1answer
2k views
Optimize sorting of Array according to Distance (CLLocation)
Currently my below code takes an average 9.27300 every time I run it. This is an iOS application and I can't expect the user to sit there for roughly 10 seconds.
This code takes an array ...