我有一個按鈕,當按住運動發生時,釋放時它應該停止。我知道我可以寫兩種方法,一種是開始,另一種是停止運動,我想知道是否在一種方法中,我可以基於Touch Up Outside和Touch Up Inside來檢測這兩種方法。ObjC Button Released Touch up
如果觸摸外面做這個,如果這樣做。
-(IBAction) startMotion: (id)sender {
NSLog(@"Forward or back button is being pressed.");
UIButton * buttonName = (UIButton *) sender;
NSLog(@"Button Name: %@", buttonName.currentTitle);
}