预期';'在'''令牌错误之前

时间:2011-08-11 09:51:58

标签: iphone objective-c ios compiler-errors

在我编写代码时,显示的错误是“预期';'之前'('令牌。
这是我指向错误的代码部分。

@class UITableViewCellEditable;

@protocol UITableViewCellEditableDelegate
- (void)editDidFinish:(NSMutableDictionary *)result //    (in this line of code)
{ 
    [userDataSource setValue:[result objectForKey:@"text"]
               forKey:[result objectForKey:@"key"]];
}
@optional

我尝试了一些可能性,但仍然是同样的错误! 我怎么处理它?<​​/ p>

1 个答案:

答案 0 :(得分:6)

您无法在@protocol块中定义方法。它仅用于声明。