ABPersonViewController
имеет свойство displayedProperties
, где вы можете определить, что отображать.
ABPersonViewController *controller = [[ABPersonViewController alloc] init];
NSArray *properties =
[NSArray arrayWithObjects:
[NSNumber numberWithInt:kABPersonPhoneProperty], nil]
[controller setDisplayedProperties:properties];