摘要:
准备2个文件:文件一,ThisService.app文件二,Doxygen.rb下载上述2个文件:ThisService&Doxygen_rb准备好之后,两步配置,一步操作:配置一,打开ThisService,如上图,Name随意填写,将来会出现在右键菜单,红框1把Doxygen.rb拽到红框2,选Filter(both),红框3然后Create Service,红框4配置一完成!配置二,打开系统设置,找到Keyborad,并打开,从Services(红框5)里边找到刚刚创建的服务,并勾选,红框6,然后点红框7处开始设置快捷键,这里我选用的是Command+option+/ (这个和X 阅读全文
摘要:
互联网 App 中经常会用到 html 颜色值转换 UIColor,比如:#FF9900、0XFF9900 等颜色字符串,以下方法可以将这些字符串转换为 UIColor 对象。 1 #define DEFAULT_VOID_COLOR [UIColor clearColor] 2 3 4 5 6 7 + (UIColor *) colorWithHexString: (NSString *) stringToConvert 8 { 9 NSString *cString = [[stringToConvert stringByTrimmingCharactersInSet:[... 阅读全文