1:通过VIEwController初始化
popovercolorPicker = [[UIPopoverController alloc] initWithContentVIEwController:colorPickerVIEwController];
2:设置UIPopoverController的内容大小(一般设置VIEwController的大小即可)
[popovercolorPicker setPopoverContentSize:colorPicker.frame.size animated:YES];
3:显示出来
[popovercolorPicker presentPopoverFromrect:btn.frame inVIEw:self.toolbarBrush permittedArrowDirections:UIPopoverArrowDirectionDown animated:YES];
参数解释:
presentPopoverFromrect: UIPopoverController显示的具体位置
inVIEw:基于哪一个父视图来显示位置.
permittedArrowDirections:箭头的出现位置
总结以上是内存溢出为你收集整理的UIPopoverController for iPad全部内容,希望文章能够帮你解决UIPopoverController for iPad所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)