CardCombinationsVIEwCtrl* ccvc = [[CardCombinationsVIEwCtrl alloc] initWithNibname:@"CardCombinationsVIEwCtrl" bundle:nil]; UIPopoverController* cccontroller = [[UIPopoverController alloc] initWithContentVIEwController:ccvc]; [cccontroller setPopoverContentSize:CGSizeMake(155,330) animated:NO]; [cccontroller presentPopoverFromrect:CGRectMake(953,656,53/2,48/2) inVIEw:[[CCDirector sharedDirector] vIEw] permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES]; cccontroller.delegate = self; [ccvc release];
将要显示的controller对象 传递给UIPopoverController的构造函数即可。
setPopoverContentSize 是表示设置 区域范围。
presentPopoverFromrect: inVIEw: permittedArrowDirections: animated:
设置箭头指向的区域 ,箭头方向 ,是否有动画。
总结以上是内存溢出为你收集整理的ipad中 UIPopoverController 的使用方法全部内容,希望文章能够帮你解决ipad中 UIPopoverController 的使用方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)