iOS study

一 视图控制器间的切换:

通过设置目标视图控制器的modalPresentationStyle属性,

可以设置切换的动画效果;

二 函数名的输出:

__PRETTY_FUNCTION__ 代替手动输入@“function name”;

- (void)willPresentAlertView:(UIAlertView *)alertView{
    //output: willPresentAlertView
    NSLog(@"willPresentAlertView");
    //output: -[ViewController willPresentAlertView:]
    NSLog(@"%s",__PRETTY_FUNCTION__);
}
 
- (void)didPresentAlertView:(UIAlertView *)alertView{
    //output: didPresentAlertView
    NSLog(@"didPresentAlertView");
    //output: -[ViewController didPresentAlertView:]
    NSLog(@"%s",__PRETTY_FUNCTION__);
}

三 XCode5建立的工程转换为XCode4.6可打开的工程:

左侧选中storyboard文件,右侧Interface Builder Document下Opens in修改为XCode4.6即可;

iOS study_第1张图片

你可能感兴趣的:(iOS study)