2012-08-06 150 views
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 


} 

回答

8

你有兩個支架出於某種原因...

[self workWithAString:modifiedString1]; 
+1

不能相信我錯過了。非常感謝。 – K17 2012-08-06 17:45:18