ios - Full Screen Custom Popover issue in iOS7 and iOS8 -
i developing app ipad only. in in 1 functionality want display fullcustom popover . for code below:- duplicateviewcontroller *viewcontrollerforpopover = [self.storyboard instantiateviewcontrollerwithidentifier:@"duplicatepopovervc"]; viewcontrollerforpopover.arr_studentdetail = self.arrstudentdetail; viewcontrollerforpopover.dictselectedprog = dictselectedprogram; self.popover = [[uipopovercontroller alloc] initwithcontentviewcontroller:viewcontrollerforpopover]; [self.popover setpopovercontentsize:cgsizemake(self.view.frame.size.width, self.view.frame.size.height)]; viewcontrollerforpopover.modalpresentationstyle = uimodalpresentationfullscreen; [self.popover setbackgroundcolor:[[uicolor darkgraycolor] colorwithalphacomponent:0.4]]; [self.popover presentpopoverfromrect:self.view.bounds inview:self.view permittedarrowdirections:0 animated:yes]; i set popover size , tried other option can't make full screen. ...