我一直在研究這個,似乎只有這樣,才能做到這一點是使用UIActionSheet,問題是,我只UIActionSheet覆蓋屏幕的一半,我的代碼是:半TRANSPARANT modalViewController
MyViewController *myVC = [[myViewController alloc] init];
UIActionSheet *myActionSheet = [[UIActionSheet alloc] initWithTitle:@"\n\n" delegate:self cancelButtonTitle:@"cancel" destructiveButtonTitle:@"done" otherButtonTitles:nil];
[myActionSheet addSubview:myVC.view];
[myActionSheet showInView:currentView];
[myActionSheet release];
我又如何從我的MyViewController中解僱這個UIActionSheet?有沒有比這更好的解決方案?這裏是什麼,我的意思是通過加載一半屏幕的截屏:
[在這裏輸入的形象描述] [1]
UPDATE:
這裏的a sample project來說明我的問題
檢查編輯答案。 – Legolas