Protocol 模拟UI中一个按钮点击改变lable中的值

简介:

要求:在一个UIView界面中又一个lable和Button,想点击按钮之后改变lable的值,用协议委托实现

Protocol(ChangeText.h):

#import <Foundation/Foundation.h>  @protocol ChangeText <NSObject>  -(void)change:(NSString *)val;  @end

Button.h:

#import <Foundation/Foundation.h> #import "ChangeText.h" @interface Button : NSObject  @property(nonatomic,retain) id<ChangeText> delegate;  -(void)changetext:(NSString *)str;  @end

Button.m:

 
#import "Button.h"  @implementation Button  -(void)changetext:(NSString *)val {     if ([_delegate respondsToSelector:@selector(change:)]) {         [_delegate change:val];     } }  - (void)dealloc {     [_delegate release];     [super dealloc]; }  @end


创建一个遵循协议的View

ViewA.h:

#import <Foundation/Foundation.h> #import "ChangeText.h" #import "Button.h" @interface ViewA : NSObject<ChangeText>  @property(nonatomic,retain)NSString* textValue; @property(nonatomic,retain)Button *btn;  //实现协议的change方法 -(void)change;  @end

View.m:

#import "ViewA.h"  @implementation ViewA  +viewAWithText:(NSString *)val {     ViewA *a = [[[ViewA alloc] init] autorelease];     a.textValue = @"text";     //初始化Button,并且将当前实现了协议的ViewA赋给button他的委托方法     Button *btn = [[[Button alloc] init] autorelease];     btn.delegate = a;     a.btn = btn;     return a; }  -(void)change:(NSString *)val {     self.textValue = val;     NSLog(@"当前的view中文本值是:%@",self.textValue); }  -(void)dealloc {     [_btn release];     [_textValue release];     [super dealloc]; }  @end

main:

#import <Foundation/Foundation.h> #import "ViewA.h" #import "Button.h" int main(int argc, const char * argv[]) {      @autoreleasepool {                  ViewA *view = [ViewA viewAWithText:@"text"];         NSLog(@"当然view中的文本值是:%@",view.textValue);         [view.btn changetext:@"lable"];     }     return 0; }

结果:

2013-08-05 17:23:22.754 按钮点击[2144:303] 当然view中的文本值是:text

2013-08-05 17:23:22.756 按钮点击[2144:303] 当前的view中文本值是:lable

















本文转自蓬莱仙羽51CTO博客,原文链接:http://blog.51cto.com/dingxiaowei/1366464,如需转载请自行联系原作者

相关文章
|
4月前
|
JavaScript
Vue给Element UI的el-popconfirm绑定按钮事件
Vue给Element UI的el-popconfirm绑定按钮事件
|
18天前
|
前端开发 图形学 开发者
【独家揭秘】那些让你的游戏瞬间鲜活起来的Unity UI动画技巧:从零开始打造动态按钮,提升玩家交互体验的绝招大公开!
【9月更文挑战第1天】在游戏开发领域,Unity 是最受欢迎的游戏引擎之一,其强大的跨平台发布能力和丰富的功能集让开发者能够迅速打造出高质量的游戏。优秀的 UI 设计对于游戏至关重要,尤其是在手游市场,出色的 UI 能给玩家留下深刻的第一印象。Unity 的 UGUI 系统提供了一整套解决方案,包括 Canvas、Image 和 Button 等组件,支持添加各种动画效果。
43 3
|
18天前
|
前端开发 开发者 开发框架
JSF与Bootstrap,打造梦幻响应式网页!让你的应用跨设备,让用户爱不释手!
【8月更文挑战第31天】在现代Web应用开发中,响应式设计至关重要,以确保不同设备上的良好用户体验。本文探讨了JSF(JavaServer Faces)与Bootstrap框架的结合使用,展示了如何构建响应式网页。JSF是一个基于Java的Web应用框架,提供丰富的UI组件和表单处理功能;而Bootstrap则是一个基于HTML、CSS和JavaScript的前端框架,专注于实现响应式设计。通过结合两者的优势,开发者能够更便捷地创建自适应布局,提升Web应用体验。然而,这种组合也有其局限性,如JSF组件库较小和较高的学习成本等,因此在选择开发框架时需综合考虑具体需求和应用场景。
29 0
|
1月前
|
图形学
小功能⭐️Unity获取点击到的UI
小功能⭐️Unity获取点击到的UI
|
3月前
|
XML IDE 开发工具
【Android UI】自定义带按钮的标题栏
【Android UI】自定义带按钮的标题栏
47 7
【Android UI】自定义带按钮的标题栏
|
2月前
|
JavaScript API
【Element-UI】vue使用 this.$confirm区分取消与关闭,vue给this.$confirm设置多个按钮
【Element-UI】vue使用 this.$confirm区分取消与关闭,vue给this.$confirm设置多个按钮
159 0
|
2月前
|
开发者
小而美的IKUN-UI组件库源码学习(按钮 Button)
小而美的IKUN-UI组件库源码学习(按钮 Button)
15 0
|
4月前
【UI】elementui select点击获取label 和 value
【UI】elementui select点击获取label 和 value
26 1
|
4月前
|
前端开发 搜索推荐 开发者
SAP UI5 sap.m.Column 控件的 minScreenWidth 属性介绍
SAP UI5 sap.m.Column 控件的 minScreenWidth 属性介绍
|
4月前
|
JavaScript 前端开发 开发者
SAP UI5 控件 sap.m.ListBase 的 inset 属性的作用介绍
SAP UI5 控件 sap.m.ListBase 的 inset 属性的作用介绍

热门文章

最新文章