4
我知道我可以做一個模式賽格瑞在這樣的代碼:iOS版 - 編程模式賽格瑞動畫(如翻轉)
[presentModalViewController:my_view, animated:YES];
,但我怎麼指定淡入或水平/垂直翻轉編程?
感謝, Pachun
我知道我可以做一個模式賽格瑞在這樣的代碼:iOS版 - 編程模式賽格瑞動畫(如翻轉)
[presentModalViewController:my_view, animated:YES];
,但我怎麼指定淡入或水平/垂直翻轉編程?
感謝, Pachun
將此屬性設置爲您的viewController:modalTransitionStyle
UIModalTransitionStyle從蘋果DOC
typedef enum { UIModalTransitionStyleCoverVertical = 0,
UIModalTransitionStyleFlipHorizontal,
UIModalTransitionStyleCrossDissolve,
UIModalTransitionStylePartialCurl,} UIModalTransitionStyle;
謝謝你了。 – pachun