Skip to content

Instantly share code, notes, and snippets.

@wangzz
wangzz / uiappearance-selector.md
Last active March 9, 2016 02:35 — forked from mattt/uiappearance-selector.md
A list of methods and properties conforming to `UIAppearance` as of iOS 8.0

Generate the list yourself:

$ cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS*.sdk/System/Library/Frameworks/UIKit.framework/Headers
$ grep -H UI_APPEARANCE_SELECTOR ./* | sed 's/ __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_5_0) UI_APPEARANCE_SELECTOR;//'

UIActivityIndicatorView

@wangzz
wangzz / Tips
Created August 12, 2014 07:54
记录遇到的小的知识点。
记录遇到的小的知识点。
@wangzz
wangzz / 编译脚本
Last active August 29, 2015 14:02
记录有用的脚本
记录有用的脚本
@wangzz
wangzz / Code Gist
Last active August 29, 2015 14:01
记录有用的代码片段
记录有用的代码片段
@wangzz
wangzz / SVN使用日志
Last active March 1, 2016 02:33
记录SVN相关内容
记录SVN相关内容
Xcode报objective c implicit conversion loses integer precision 'NSUInteger' (aka 'unsigned long') to 'int' warning
问题原因:int在64位平台和32位平台不兼容
解决方案:
两种方式都可以
①将Valid Architectures里的arm64删掉
②把xcode中implicit conversion to 32 bit type设置项都设为NO