四 9.OC15-Protocol

4 9.OC15-Protocol////? MyListener.m//? OC10-内存管理2-set方法的内存管理////? Created by liuyes on 1

4 9.OC15-Protocol

//

//? MyListener.m

//? OC10-内存管理2-set方法的内存管理

//

//? Created by liuyes on 13-12-10.

//? Copyright (c) 2013年 renhe. All rights reserved.

//

?

#import "MyListener.h"

#import "Button.h"

?

@implementation MyListener

?

- (void)onClick{

? ? NSLog(@"MyListener已经监听到按钮被点击了");

}

?

- (void)onClick:(Button *)btn{

? ? NSLog(@"MyListener已经监听到按钮-%@被点击了", btn);

}

?

@end

?

?