您的位置:首页 > 其它

presentModalViewController设置动画效果

2012-08-27 17:47 555 查看


[转载]presentModalViewController设置动画效果

(2012-04-28 19:48:00)


转载▼


标签:


转载

分类: iphone开发
还是不错的

原文地址:presentModalViewController设置动画效果作者:ios流星

presentModalViewController模态的动画效果设置:

detailViewController.modalTransitionStyle = UIModalTransitionStylePartialCurl;

[self presentModalViewController:detailViewController animated:YES];

[detailViewController release];

共有以下四种动画效果:

typedef enum {

UIModalTransitionStyleCoverVertical = 0,

UIModalTransitionStyleFlipHorizontal,

UIModalTransitionStyleCrossDissolve,

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_3_2

UIModalTransitionStylePartialCurl,

#endif

} UIModalTransitionStyle;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: