現在我這樣做:如何保存和恢復可可/石英中的多個上下文?
CGContextRef context = NULL;
context = [[NSGraphicsContext currentContext] graphicsPort];
[see if I need to restore]
[if so]
CGContextRestoreGState(context);
[do transformations and draw some stuff]
[save the current state]
CGContextSaveGState(context);
我想有不同的狀態,所以我可以回去給他們。我現在這樣做,似乎只能存儲一個。我需要多個上下文嗎?我在猜測,但我不確定最好的方式是什麼。無論如何,我剛剛進入可可,我想我會問!謝謝!
好吧我想我應該更好地閱讀文檔。謝謝! – bottleboot