TFEasyCoder icon indicating copy to clipboard operation
TFEasyCoder copied to clipboard

一个可以用copy和paste提高编程效率的框架:为UIKit和Foundation的所有公开类添加了快速创建对象的方法并且为这些类的所有非私有属性添加了链式编程方法.

Results 11 TFEasyCoder issues
Sort by recently updated
recently updated
newest added

当我的工程中没有这个ViewController.h头文件时,#import "ViewController.h"会报错,我在NSObject+TFExecute.m中 1.删除#import "ViewController.h" 2. objc_property_t *properties = class_copyPropertyList([ViewController class], &pCount);改为 objc_property_t *properties = class_copyPropertyList([UIViewController class], &pCount); 运行工程错误消失。 ps:大神,我这样做是否会影响本框架其他功能的正常使用,是否会附带产生隐藏bug?