摘要: 一:Objective-C语言基础二:Objective-C类与继承和协议一:Objective-C语言基础:1.1)#import 包含头文件 与#include 作用相同1.2)Object-c类包含两大块代码 1、 接口MyClass.h @interface MyClass @end 2、 实现MyClass.m @implementation MyClass @end1.3)没有在@interface中声明的方法依然可以在@implementation中调用。这是由于object-c是动态语言一般情况下,都会提供h文件,... 阅读全文
posted @ 2013-08-08 18:39 superlucky 阅读(928) 评论(0) 推荐(0) 编辑