An An
An An
Support code syntax highlighting of README.md,Please!!! ---an heavy user of GitBucket
Can the crosshair be auto-hide after a few seconds? Just like auto-hide tooltip, refer to the issue: * #97
如果标题下面是那种内容没有比较少,比如单元格只有一行, row 的高度只有100的那种tableView, 按理说向上滑动是应该能够回弹的啊,但是在示例 demo 中似乎并不能回弹呢
系统的通讯录应用基本都是自带有搜索功能的,能够快速的搜索通讯录列表当中的联系人.可否根据此要求进行功能改进?
我也很喜欢链式编程的黑魔法,但是感觉楼主如果当初使用了函数宏来实现基础 UI 控件的链式编程效果,能给自己降低不少工作负荷. 👇下面是能够实现链式语法的函数宏 ```objective-c #ifndef AAGlobalMacro_h #define AAGlobalMacro_h #define AAObject(objectName) [[objectName alloc]init] #define AAPropStatementAndFuncStatement(propertyModifier,className, propertyPointerType, propertyName) \ @property(nonatomic,propertyModifier)propertyPointerType propertyName; \ - (className * (^) (propertyPointerType propertyName)) propertyName##Set; #define AAPropSetFuncImplementation(className,...