3

以下两种方法在我的一个控制器中。buttonPressed 方法连接到按钮并正常工作。但是,当我添加对 workWithAString 的调用时出现错误。想知道我在这里缺少什么,并感谢您的建议。

-(NSString *) workWithAString: (NSString *) string1
{

NSString *string2 = [[NSString alloc] initWithString:string1];

// Here I will do some other things with string2

return string2;

}


-(IBAction)button1Pressed
{
NSString *modifiedString1 = [[NSString alloc] initWithString:InputValue.text];
modifiedString1 = [[self workWithAString: modifiedString1 ];  // Expected identifier error here


}
4

1 回答 1

8

出于某种原因,您有两个括号...

[self workWithAString:modifiedString1];
于 2012-08-06T17:12:27.763 回答