If you open Settings -> General -> About, it\'ll say Bob\'s iPhone at the top of the screen. How do you programmatically grab that name?
Settings -> General -> About
To get an iPhone's device name programmatically
UIDevice *deviceInfo = [UIDevice currentDevice]; NSLog(@"Device name: %@", deviceInfo.name);
// Device name: my iPod