Search Results

1
vote
1answer
484 views

How can I listen for didRegisterForRemoteNotificationsWithDeviceToken outside the app delegate

I would like to my object to receive notification with the DeviceToken becomes available. Is there a way to delegate only certain functions from the UIApplication to my class? Update: …
1
vote
3answers
681 views

How do I convert NSString with Hexvalue to binary char* ?

I have a long hex value stored as a NSString, something like: c12761787e93534f6c443be73be31312cbe343816c062a278f3818cb8363c701 How do I convert it back into a binary value stored as …
3
votes
2answers
119 views

Dynamic class creation in Objective-C

Is there an equivalent of selectors for classes? How can I create a instance of a class from a string? …
0
votes

NStimer slow when use CGContextClipToRect in iphone device

As U62 said, 100fps is not a realistic expectation, try running it at 30, maybe 60 updates a second and see how it runs. Also if your writing a game that need to run at a high frame rate you should …
0
votes

How do I convert NSString with Hexvalue to binary char* ?

static NSString* hexval(NSData *data) { NSMutableString *hex = [NSMutableString string]; unsigned char *bytes = (unsigned char *)[data bytes]; char temp[3]; int i = 0; f …
2
votes

Is there a way to create an abstract class in Objective C?

from http://www.omnigroup.com/mailman/archive/macosx-dev/2004-August/053887.html Obj …