0
votes
How do these emoji enablers manage to remain undetected while using WriteToFile outside sandbox?
My guess is that they use NSUserDefaults' -persistentDomainForName: and -setPersistentDomain:forName: to set a global user default (in NSGlobalDomain …
3
votes
How can I store UIButtons in an array?
[NSArray arrayWithObjects:...] returns an autoreleased array, so by the time you use it, it no longer exists and you end up messaging an invalid pointer. What you want is [[NSArr …
3
votes
Accessing classes in .a library file?
If you mean Code Sense/autocompletion, IIRC they're based off of included headers. If you don't have the headers, you won't get the hints.
…
