摘要: from :http://www.cnblogs.com/wendingding/p/3705428.html其实多态说白了就是:定义类型和实际类型,一般是基于接口的形式实现的。例子:Animal类//// Animal.h// WDDDuotaiTest//// Created by Liu... 阅读全文
posted @ 2015-09-25 11:58 Geeok 阅读(163) 评论(0) 推荐(0) 编辑
摘要: from :http://www.cnblogs.com/wendingding/p/3705278.html子类继承父类,便拥有了父类的所有方法和属性(成员变量)。继承的优点:(1)抽取出了重复的代码。(2)建立了类与类之间的联系。继承的缺点:耦合性太强。@interface Animal:NSO... 阅读全文
posted @ 2015-09-24 22:18 Geeok 阅读(125) 评论(0) 推荐(0) 编辑
摘要: //// Score.h// WenDingdingTest//// Created by LiuChanghong on 15/9/24.// Copyright © 2015年 LiuChanghong. All rights reserved.////from http://www.c... 阅读全文
posted @ 2015-09-24 21:51 Geeok 阅读(219) 评论(0) 推荐(0) 编辑
摘要: https://github.com/rickytan/RTImageAssetsRTImageAssets在Xcode6.4执行遇到RTImageAssets.xcplugin无法加载的问题,解决方案:1.终端执行以下命令,把执行后的UUID记下 defaults read /Applicat... 阅读全文
posted @ 2015-09-09 11:37 Geeok 阅读(307) 评论(0) 推荐(0) 编辑
摘要: NSMutableAttributedString *text = [[NSMutableAttributedString alloc] initWithString:@"以“弘扬优秀文化、创办经典教育,倡导品质生活、开发经典产品”为宗旨, 以打造“理念创新、外观经典、内容一... 阅读全文
posted @ 2015-09-05 13:25 Geeok 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 我们可以通过设置tableView的separatorStyle属性来设置有无分割线以及分割线的风格,其中style定义如下:typedef enum { UITableViewCellSeparatorStyleNone, UITableViewCellSeparatorStyleSi... 阅读全文
posted @ 2015-09-05 00:53 Geeok 阅读(6563) 评论(1) 推荐(0) 编辑
摘要: 参考:http://www.cnblogs.com/graphics/p/4117353.htmlTarget membership是指XCode中,一个文件属于哪一个工程,在XCode左侧的工程面板中选中一个文件,在XCode右侧的属性面板中会显示其Target Membership。Target... 阅读全文
posted @ 2015-09-02 17:38 Geeok 阅读(309) 评论(0) 推荐(0) 编辑
摘要: myTableView.tableFooterView = [[UIView alloc]initWithFrame:CGRectZero]; 阅读全文
posted @ 2015-08-30 18:10 Geeok 阅读(170) 评论(0) 推荐(0) 编辑