Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

arnieterm

macrumors regular
Original poster
Aug 28, 2008
201
0
Is it possible to obtain the iphone's MSISDN? I need it in order to authenticate the user in my application.
Any idea?
Thanks
Arnieterm
 
Why not check for the Unique ID of the phone using the following...

Code:
UIDevice *myCurrentDevice = [UIDevice currentDevice];
	
	NSLog(@"%@ is an %@ running %@ The Unique ID is %@", [myCurrentDevice name],
		  [myCurrentDevice model],
		  [myCurrentDevice systemVersion],
		  [myCurrentDevice uniqueIdentifier]);
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.