0
我有一個按鈕(名爲randomGenerator),每次按它時,它都會生成隨機語句。我怎樣才能創建一個按鈕(undoButton),當點擊按鈕將撤銷randomGenerator調用的動作並將您帶回到之前的語句?所以基本上我想撤消基於按鈕點擊的按鈕操作方法:撤消按鈕點擊
-(void) randomGeneratorClicked {
//generate a random statement
}
-(void) undoButtonClicked {
//undo the action that [self randomGeneratorClicked] has done
}
您應該爲'randomGeneratorClicked'添加代碼。不知道還不清楚需要「撤銷」什麼。撤消應該做什麼? – jasonwarford