会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Travel.color
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2016年8月9日
Total review of Objective--C
摘要: 1)@public 公有 --在类内类外都可以使用并且可以被继承,在类外使用【指向】来调用类内的成员变量 2)@private 私有--在类内可以使用,类外无法被调用且不可以被继承 3)@protected 受保护--在类内可以使用,类外无法调用并且可以被继承 4)@package 框架权限--在框
阅读全文
posted @ 2016-08-09 22:16 Travel_color
阅读(137)
评论(0)
推荐(0)
编辑
Objective--C Practice and source code
摘要: Qustion:(MRC下) 1、定义一个Computer类 实例变量:float width; NSString *name; 方法:一个带两个参数的初始化函数;print()函数;dealloc()函数; 2、定义一个Person类 实例变量:NSString *name; Computer *
阅读全文
posted @ 2016-08-09 14:35 Travel_color
阅读(156)
评论(0)
推荐(0)
编辑
Foundation frame 中常用类的代码
摘要: 1 #import 2 3 int main(int argc, const char * argv[]) 4 { 5 @autoreleasepool 6 { 7 #pragma mark - Test 8 // int a = 10; 9 // double b = 7.7; 10 // fl...
阅读全文
posted @ 2016-08-09 07:40 Travel_color
阅读(176)
评论(0)
推荐(0)
编辑