是否可以设置 ABPeoplePicker & 的ContentInset? UIImagePickerController?

发布于 2024-11-29 05:43:37 字数 309 浏览 2 评论 0原文

我知道可以为 UITableView 添加一个插图,如下所示:

[self.tableView setScrollIndicatorInsets:UIEdgeInsetsMake(5, 0, 46, 0)];
[self.tableView setContentInset:UIEdgeInsetsMake(5, 0, 46, 0)];

Is it possible for a ABPeoplePicker & UIImagePickerController(源类型照片库)?

谢谢!

库尔顿

I know it's possible to add a inset for a UITableView like so:

[self.tableView setScrollIndicatorInsets:UIEdgeInsetsMake(5, 0, 46, 0)];
[self.tableView setContentInset:UIEdgeInsetsMake(5, 0, 46, 0)];

Is it possible for a ABPeoplePicker & UIImagePickerController (sourceTypePhotoLibrary)?

Thanks!

Coulton

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嗳卜坏 2024-12-06 05:43:37

您需要访问 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 没有任何线索,因此无法帮助您

希望这会有所帮助

You need to access the Table view of ABPeoplePicker and then probably try applying your changes there

     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)];

     }

I have no clue regarding UIImagePickerController so can't help you with that

Hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文