我剛開始在覈心顯卡上發佈,所以我可能需要一些幫助。在覈心顯卡中發佈問題
我有代碼看起來像這樣:
UIImage *buttonImage() {
UIGraphicsBeginImageContextWithOptions(bounds.size, NO, 0);
CGContextRef context = UIGraphicsGetCurrentContext();
CGColorSpaceRef baseSpace = CGColorSpaceCreateDeviceRGB();
CGMutablePathRef outerPath;
CGMutablePathRef midPath;
CGMutablePathRef innerPath;
CGMutablePathRef highlightPath;
//Some button stuff
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
CGContextRelease(context);
return image;
}
該版本行了,我已經把雖然我得到一個錯誤吧。
context_reclaim: invalid context
context_finalize: invalid context
任何想法,以我應該在哪裏發佈這個版本?