博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
runTime动态给类添加属性
阅读量:5172 次
发布时间:2019-06-13

本文共 777 字,大约阅读时间需要 2 分钟。

#项目中需要给系统类添加属性

#需要注意的地方就是.m中   set 和 get  ,get方法中方法名和添加的属性名一致,set中可以用驼峰

 

#import 
@interface UITextField (AddProperty)/** 添加额外标签*/@property (nonatomic, copy) NSString* otherTag;@end
////  UITextField+AddProperty.m//  phone-wisdomFarmland////  Created by apple on 2019/2/19.//  Copyright © 2019年 apple. All rights reserved.//#import "UITextField+AddProperty.h"#import 
static NSString *targetVaulekey = @"test_otherTagKey";@implementation UITextField (AddProperty)@dynamic otherTag;-(NSString *)otherTag{ return objc_getAssociatedObject(self, &targetVaulekey);}- (void)setOtherTag:(NSString *)otherTag{ objc_setAssociatedObject(self, &targetVaulekey, otherTag, OBJC_ASSOCIATION_RETAIN);}@end

 

转载于:https://www.cnblogs.com/shaoqizhi/p/10416963.html

你可能感兴趣的文章
Problem B: 取石子
查看>>
dbflow 批量 增删查改
查看>>
Mybatis常见配置错误总结
查看>>
Python学习笔记001——Linux
查看>>
Vue: 常用指令
查看>>
Asp.Net中的跨平台的
查看>>
第一次作业
查看>>
工作日记
查看>>
weblogic 10.x 上开发restful服务
查看>>
在团队中我的索引卡任务
查看>>
我的一点企业做云经验
查看>>
简单介绍.Net3.0 中跨线程访问控件
查看>>
oracle imp 工具可能出现的问题
查看>>
bzoj1045题解
查看>>
学习Cocos2d的博客 --推荐
查看>>
SpringMVC中@RequestMapping参数设置
查看>>
lea实现加法
查看>>
文件操作
查看>>
spring容器启动的加载过程(三)
查看>>
jdbc连接数据库代码
查看>>