1.弹出控制器
QDFilterViewController*filterListVC = [[QDFilterViewControlleralloc]init];
UIPopoverController*popVc = [[UIPopoverControlleralloc]initWithContentViewController:filterListVC];
popVc.backgroundColor=QDUserColor(160,160,160);
[popVc presentPopoverFromRect:frame inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:NO];
//注:第一个参数frame是弹出时箭头的位置。
2.如何设置弹出控制器视的大小?
filterListVC.preferredContentSize=CGSizeMake(250,250);
3.如何设置弹出箭头的颜色?
popVc.backgroundColor=QDUserColor(160,160,160);
通过设置popVc的背景颜色,就可以修改箭头的颜色。
网友评论