码迷,mamicode.com
首页 > 其他好文 > 详细

oc57--Category 分类

时间:2017-08-26 19:41:49      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:import   ace   const   通过   nsstring   return   方法   nonatomic   atom   

//
//  main.m
//  Category基本使用:1.不修改类而扩充类。2.对于一个庞大的类,分模块开发。

#import <Foundation/Foundation.h>
#import "Person.h"
#import "Person+NJ.h"

/*
 方法:
 方法的声明:
 方法的实现:
 
 所以: 通过分类给某一个类扩充方法, 也分为声明和实现两个部分
 
 // 分类的声明
 @interface ClassName (CategoryName)
 NewMethod; //在类别中添加方法
 //不允许在类别中添加变量
 @end
 
 ClassName: 需要给哪个类扩充方法
 CategoryName: 分类的名称
 NewMethod: 扩充的方法
 
 // 分类的实现
 @implementation ClassName(CategoryName)
 NewMethod
 @end
 
 ClassName: 需要给哪个类扩充方法
 CategoryName: 分类的名称
 NewMethod: 扩充的方法
 
 */
int main(int argc, const char * argv[]) {
    Person *p = [[Person alloc] init];
    p.age = 30;
    [p say];
    
    [p playFootball];
    [p playBasketball];
    
    NSString;
    NSArray;
    return 0;
}
//  Person.h

#import <Foundation/Foundation.h>

@interface Person : NSObject

@property (nonatomic, assign) int age;

- (void)say;

@end
//  Person.m

#import "Person.h"

@implementation Person

//-(void)say
//{
//    NSLog(@"age = %i", _age);
//}

-(void)say{
    NSLog(@"age= %i",_age);
}

@end
//
//  Person+NJ.h

#import "Person.h"

@interface Person (NJ)
// 扩充方法

- (void)playFootball;

- (void)playBasketball;

@end
//
//  Person+NJ.m

#import "Person+NJ.h"

@implementation Person (NJ)
// 实现扩充方法

- (void)playFootball
{
    NSLog(@"%s,%i", __func__,[self age]);
}

- (void)playBasketball
{
    NSLog(@"%s,%i", __func__,[self age]);
}
@end

 

oc57--Category 分类

标签:import   ace   const   通过   nsstring   return   方法   nonatomic   atom   

原文地址:http://www.cnblogs.com/yaowen/p/7436020.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!