我试图从一个数组中提取一个字符串(包含一个整数) ,然后在函数中使用它作为一个整数。我试着用 intValue 把它转换成 int。
这是我一直在尝试的代码。
NSArray *_returnedArguments = [serverOutput componentsSeparatedByString:@":"];
[_appDelegate loggedIn:usernameField.text:passwordField.text:(int)[[_returnedArguments objectAtIndex:2] intValue]];
我得到了这个错误:
传递参数3的‘ loggedIn: : :’使指针从整数 没有石膏
怎么了?