uiscrollview中UITextfiled的子视图框架

时间:2013-11-30 05:34:15

标签: iphone xcode uiscrollview ios7

我在添加按钮点击事件的UIScrollview中添加TextField,我想显示最后一个文本域框架并显示在UIScrollview中。

MyCode: - [scrollview convertRect:subview.frame toView:someOtherView];

ScreenShot

提前致谢

2 个答案:

答案 0 :(得分:1)

[scrView layoutSubviews];

我们只需要为scrollview设置layoutSubview,它就适用于我。

答案 1 :(得分:0)

如果列表中的数字将保持均匀间隔,则应该使用UITableView。很容易实现UITableViewDataSource来管理它的行,并且它免费提供动画。 UITableView是UIScrollView的子类,因此您可以使用相同的setContentOffset方法,但使用索引路径更清晰。

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:[tableView numberOfRowsInSection:0] inSection:0];
[tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionNone animated:YES];