04 2016 档案

摘要:使用CocoaPods被卡住:Updating local specs repositories 使用 pod install --verbose --no-repo-update 阅读全文
posted @ 2016-04-26 18:11 shidaying 阅读(357) 评论(0) 推荐(0)
摘要:XCTFail(format…) 生成一个失败的测试; XCTFail(@"Fail"); XCTAssertNil(a1, format...) 为空判断, a1 为空时通过,反之不通过; XCTAssertNil(@"not nil string", @"string must be nil"); XCTAssertNotNil(a1, format…) 不为空判... 阅读全文
posted @ 2016-04-26 17:00 shidaying 阅读(1266) 评论(0) 推荐(0)
摘要:我们一般会用 UIColor 的RGB来生成颜色: 以下几种方式都是可以的: _pushBtn.backgroundColor = [UIColor colorWithRed:220/255.f green:220/255.f blue:220/255.f alpha:1.0]; _pushBtn. 阅读全文
posted @ 2016-04-25 18:17 shidaying 阅读(345) 评论(0) 推荐(0)