Im遵循一個教程,我不確定如何將此代碼轉換爲在啓用ARC的情況下無誤地運行。iOS 5需要ARC橋接模型
- (void)setHourHandImage:(CGImageRef)image
{
if (image == NULL) {
hourHand.backgroundColor = [UIColor blackColor].CGColor;
hourHand.cornerRadius = 3;
}else{
hourHand.backgroundColor = [UIColor clearColor].CGColor;
hourHand.cornerRadius = 0.0;
}
hourHand.contents = (id)image;
給我一個錯誤的唯一部分是(id)圖像;
另外
w = CGImageGetWidth((CGImageRef)hourHand.contents);
(CGImageRef)minHand.contents);給我一個錯誤
感謝
你會得到什麼錯誤? – MobileOverlord 2012-03-02 01:51:15