本帖最后由 枫煠 于 2014-12-6 18:29 编辑
- //
- // Test1.h
- // test
- //
- // Created by admin on 2014/12/6.
- // Copyright (c) 2014年 itcast. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- //在@interface底下用{}包起来,都算私有变量,@interface不论是放在.h or .m都一样
- @interface Test1 : NSObject{
- NSString* test; //私
- }
- @property(assign, nonatomic) int b; //公
- @end
复制代码
- </blockquote></div><div class="blockcode"><blockquote>//
- // Test1.m
- // test
- //
- // Created by admin on 2014/12/6.
- // Copyright (c) 2014年 itcast. All rights reserved.
- //
- #import "Test1.h"
- //在.m的@interface里面,不管宣告什么东西都是私有
- @interface Test1(){
- int c; //私
- }
- @property(assign, nonatomic) int a; //私
- @end
- @implementation Test1
- @end
复制代码
不知道这样解释算不算清楚:o
|