随笔分类 -  IOS开发-Object C

Object C语言编写的IOS程序
摘要:description是所有类都有的一个方法。我们重写这个方法,可以自定义实例输出的信息。比如我们创建一个Person类:在.h文件中添加两个属性:#import @interface Person : NSObject@property (strong, nonatomic) NSString *... 阅读全文
posted @ 2014-12-05 15:15 GarveyCalvin 阅读(1481) 评论(0) 推荐(0) 编辑
摘要:获取画布:CGContextRef context = UIGraphicsGetCurrentContext();设置颜色的三种方法:[[UIColor blueColor] setStroke];CGContextSetStrokeColorWithColor(context, [UIColor... 阅读全文
posted @ 2014-12-05 14:30 GarveyCalvin 阅读(431) 评论(0) 推荐(0) 编辑
摘要:有时候我们需要使用代码中断程序,如果直接调用exit方法,会使得程序就像是崩溃那样,因此我们应该加上一个动画效果。例如:AppDelegate *app = [UIApplication sharedApplication].delegate;UIWindow *window = app.windo... 阅读全文
posted @ 2014-11-10 14:08 GarveyCalvin 阅读(2630) 评论(0) 推荐(0) 编辑
摘要:在XCode6新建项目时,不再自动创建头文件,因此我们需要手动添加。点击我们的项目-》Build Settings -> all -> 搜索“prefix” -> 修改prefix header的值,如下图所示:项目名称:UIAlertView-Add textField头文件:UIAlertVie... 阅读全文
posted @ 2014-11-04 11:23 GarveyCalvin 阅读(776) 评论(0) 推荐(0) 编辑