uitableviewcell 披露指示器附件视图对齐

发布于 2024-11-06 19:25:59 字数 55 浏览 0 评论 0原文

是否可以更改 UITableViewCell 上的附件视图位置/对齐方式(默认情况下居中对齐)?

Is it possible to change accessory view position/alignment on UITableViewCell (By default it center align) ?

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

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

发布评论

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

评论(1

小巷里的女流氓 2024-11-13 19:25:59

不,您不能使用任何苹果提供的 API,但您可以创建自己的视图并将其放置在单元格的右侧。

您只需要在创建该对象时或通过 frame 属性设置该 uiview 对象的框架,如下所示

UIView *viewObject = {[UIView alloc] initWithFrame:CGRectMake(280, 10, 25, 25)];

viewObject.frame = CGRectMake(280, 10, 25, 25)

No you cannot by using any apple provided API but you can create your own view and place it at the right side of the cell.

You just need to set the frame of that uiview object while creating that object or by frame property, like this

UIView *viewObject = {[UIView alloc] initWithFrame:CGRectMake(280, 10, 25, 25)];

or

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