0
的我想打一個GKSession對象的副本,我實現copyWithZone如下:複製GKSession對象實現copyWithZone
-(id)copyWithZone:(NSZone *)zone {
GKSession *kati = [[GKSession allocWithZone: zone] init];
kati=_currentSession;
return kati;}
不過我並不把初始對象的副本,但一提到那。
我錯過了什麼......;
copyWithZone的實現是製作GKSession對象的副本的方法嗎?
在此先感謝...!
戴夫:在這種情況下,我會開始。使用copyWithZone複製GKSession對象的語句如下:myViewController.currentSession = [self copy];我對嗎? – Kostas