Archive

Archive for June 25th, 2009

Create applications with Adobe Catalyst

June 25th, 2009 No comments

We wanted to share with you a great video tutorial about how to use Adobe Flash Catalyst and create Flex Applications starting just with an image.
The tutorial explains in details how you can create a Flex button and a scrollbar using Catalyst.

Categories: Uncategorized Tags:

Objective C Get iPhone Device GUID

June 25th, 2009 2 comments

Following Xcode reveals you the device id

UIDevice *device = [UIDevice currentDevice];
NSString *uniqueIdentifier = [device uniqueIdentifier];
/*[device release];*/
NSLog(@”Device GUID: %@”, uniqueIdentifier);

Categories: iPhone SDK Tags: , , ,

Objective C Get iPhone number

June 25th, 2009 2 comments

How to get the iphone number from sim using xcode or objective c?

NSString *num = [[NSUserDefaults standardUserDefaults] stringForKey:@”SBFormattedPhoneNumber”];
NSLog(@”Phone Number: %@”, num);

Categories: iPhone SDK Tags: , , ,