框架
founfation:基礎(chǔ)框架
uikit:看得見的框架
avfoundation:媒體類框架、
coreimage:處理圖片?可以實(shí)現(xiàn)美圖秀秀的功能
quartzcore:動(dòng)畫類 繪圖類
corelocation:地理定位(lba location base sewer)
covedata:數(shù)據(jù)持久化
各種顏色代碼
+ (UIColor *)blackColor;????? // 0.0 white?
+ (UIColor *)darkGrayColor; ? // 0.333 white?
+ (UIColor *)lightGrayColor;? // 0.667 white?
+ (UIColor *)whiteColor;????? // 1.0 white?
+ (UIColor *)grayColor; ????? // 0.5 white?
+ (UIColor *)redColor;??????? // 1.0, 0.0, 0.0 RGB?
+ (UIColor *)greenColor;????? // 0.0, 1.0, 0.0 RGB?
+ (UIColor *)blueColor; ????? // 0.0, 0.0, 1.0 RGB?
+ (UIColor *)cyanColor; ????? // 0.0, 1.0, 1.0 RGB?
+ (UIColor *)yellowColor; ??? // 1.0, 1.0, 0.0 RGB?
+ (UIColor *)magentaColor;??? // 1.0, 0.0, 1.0 RGB?
+ (UIColor *)orangeColor; ??? // 1.0, 0.5, 0.0 RGB?
+ (UIColor *)purpleColor; ??? // 0.5, 0.0, 0.5 RGB?
+ (UIColor *)brownColor;????? // 0.6, 0.4, 0.2 RGB?
(UIColor *)clearColor; ?