UIPageControl:如何在iPhone SDK中动态加载View中的控件?
我正在制作一个 iPhone 应用程序,它需要实现 UIPageControl。
我参考了很多教程,但都添加了静态数据来查看。我想在滑入新视图时动态向视图添加按钮。
应该做什么?
I am making an iPhone app which has a requirement to implement the UIPageControl.
I have referred to many tutorials but all of them have added static data to view. I want to dynamically add buttons to the view when the new view is swiped in.
What should be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 addSubview/removeFromSuperview 方法动态地将新项目添加到 UIView。
You can dynamically add new items to UIView, using addSubview/removeFromSuperview methods.