我只是 iPhone 编程的初学者。我在教程中看到了这段代码,但我不明白它是什么意思。titleForState
我对和等关键字感到困惑initWithFormat
。
谁能帮助我理解这种语法的含义和重要性。
-(IBAction)buttonPressed: (id)sender {
NSString *title = [sender **titleForState**:UIControlStateNormal];
NSString *newText = [[NSString alloc] **initWithFormat**:
@"%@ button pressed.", title];
statusText.text = newText;//statustext is a label
[newText release];
}