雖然有點晚了。
我已經實現它之前..我設法讓UIPresentationFormSheet居中。 這裏是我的代碼..
[detailView setModalTransitionStyle:UIModalTransitionStyleFlipHorizontal];
[detailView setModalPresentationStyle:UIModalPresentationFormSheet];
[self presentModalViewController:detailView animated:YES];
detailView.view.superview.autoresizingMask = UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin;
float heightOfFrame = 200.0f;
float widthOfFrame= 400.0f;
detailView.view.superview.frame = CGRectMake(
self.view.superview.center.x - (widthOfFrame/2),
self.view.superview.center.y - (heightOfFrame/2),
widthOfFrame,
heightOfFrame
);
希望我幫助你在某些方面。
問候,史蒂夫
謝謝回覆。你怎麼看待使用界限?而且,當呈現視圖是導航控制器時,你有問題嗎?看起來這些黑客在使用導航控制器時不起作用。 – Ricardo 2012-07-06 13:59:51