首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

四 9.OC15-Protocol

2013-12-15 
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

?

?

热点排行