我正在开发一个 iPad 应用程序。在某些阶段,我需要使用下拉类型的功能。所以,我同样使用 UIPopoverView。
当 IBAction 在点击特定 UIButton 时触发,我会调整 popoverview 渲染 UITableViewController。
一切正常。当用户点击任何单元格时,我需要在附加的 UIButton 标题中设置相关的单元格值。
在这里,popover 视图是我单独创建的 UITableViewController 视图。并在选择 Outlet IBAction 时调用它。
CGRect dropdownPosition = CGRectMake(self.btnOutlet.frame.origin.x, self.btnOutlet.frame.origin.y, self.btnOutlet.frame.size.width, self.btnOutlet.frame.size.height);
[pcDropdown presentPopoverFromRect:dropdownPosition inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];
谢谢