iPad - UITableView 与 UITextField - 方向更改时自动调整大小问题
在我的 iPad 拆分视图应用程序中,我在详细视图中也有一个表格视图。每行都有一个文本字段。当方向改变时,表视图中的表字段将扩展到表视图之外。 有人可以告诉我如何设置自动调整大小蒙版,以便即使方向发生变化,文本字段也将位于表视图内?
In my iPad split view application, I've a table view in detailed view as well. Each row has a text field. When orientation changes, the table field in table view is extending out of table view.
Can some one tell me how to set the auto resizing mask so that even when orientation changes, the text fields will be within the table view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将
tableview
添加为UIView
的subview
那么:在创建
cell
时设置如下:如果您添加 < code>textField 作为
cell
的子视图。这样它将在定向时处理其所有子视图
if you add
tableview
assubview
ofUIView
then:while creation of
cell
set like this:if u add
textField
as subview ofcell
. So that it will handle all of itssubviews
while orientation