回答

0

您需要访问ABPeoplePicker的表视图,然后可能会尝试将更改应用有

 

    for (UITableView *tbl in picker.topViewController.view.subviews) 
    { 
     //Your changes here 
     [tbl setScrollIndicatorInsets:UIEdgeInsetsMake(5, 0, 46, 0)]; 
     [tbl setContentInset:UIEdgeInsetsMake(5, 0, 46, 0)]; 

    } 

我有一个关于的UIImagePickerController不知道所以不能帮你

希望这会有所帮助

相关问题