努力試圖繪製一個矩形中的UITableViewCellUIRectFill沒有在iOS的7
//Works with iOS6 and earlier but NOT with (iOS7)
- (void)drawRect:(CGRect)rect {
// Creating a black border
[[UIColor blackColor] setFill];
UIRectFill(CGRectMake(10, 5, 40, 43));
// Filling with rig color
[[UIColor colorWithRed:r green:g blue:b alpha:a] setFill];
UIRectFill(CGRectMake(11, 6, 38, 41));
}
有誰知道爲什麼,這並不在iOS中7工作,但確實在iOS 6中?
呃......爲什麼它不工作會有所幫助一些更多的信息。 – GuybrushThreepwood
那是什麼,我想弄清楚到底爲什麼不與iOS7工作。你可以用你的任何UItableViewCell類來檢查這個方法嗎? –