vote up -1 vote down star
1

model no of iphone through code

flag

0% accept rate
2  
I would suggest accepting answers to at least some of the previous 13 questions you've asked, otherwise nobody will bother putting the effort in to answer this one. – Robert W Oct 25 at 11:59
Answers help everyone. – willc2 Oct 25 at 14:38

1 Answer

vote up 1 vote down
UIDevice *myCurrentDevice = [UIDevice currentDevice];  

NSLog(@"%@", [myCurrentDevice model]);
NSLog(@"%@", [myCurrentDevice systemName]);
NSLog(@"%@", [myCurrentDevice systemVersion]);

// result

iPhone
iPhone OS
3.1.2

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.