I know UIKit uses CGFloat because of the resolution independent coordinate system.
But every time I want to check if for example frame.origin.x is 0 it makes me feel sick:
if (theView.frame.origin.x == 0) {
// do important operation
}
Isn't …
I have a big problem with my iOS App: it crashes sometimes without detailed debug error.
The stack trace is empty. These are the only two lines in the stack trace:
crash start in UIApplicationMain at "symbol stub for: -[_…
I read here Learn C Before Objective-C?
Usually I then replace some Obj-C code with pure C code (after all you can mix them as much as you like, the content of an Obj-C method can be entirely, pure C …