在类型为"_strong id"的对象上找不到属性“标签" [英] Property 'tag' not found on object of type '_strong id'

查看:267
本文介绍了在类型为"_strong id"的对象上找不到属性“标签"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在根据本教程( http://bit.ly/NI9kQe )构建一个应用,该应用使用自定义网络api连接到Web服务器.要求之一是检测是否已点击登录"或注册"按钮.这可以通过在接口构建器中为按钮设置的标签"来完成(注册按钮的标签为1).

I am building an App according to this tutorial (http://bit.ly/NI9kQe) which uses a custom web api to connect to the web server. One of the requirements is to detect whether or not the Login or Register button has been tapped. This is done using a "tag" which has been set for the button in interface builder (the register button has a tag of 1).

下面的代码块位于btnLoginRegisterTapped方法内部(错误发生在该行上-> NSString *命令=(sender.tag == 1)?@"register":@"login";):

The chunk of code sits inside the btnLoginRegisterTapped method as follows (the error occurs on the line -> NSString* command = (sender.tag==1)?@"register":@"login";):

- (IBAction)btnLoginRegisterTapped:(id)sender {

//form fields validation
if (fldUserName.text.length < 4 || fldPassword.text.length < 4) {
  //  [UIAlertView error:@"Enter username and password over 4 chars each."];

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Opps!!" message:@"Enter  username and password over 4 chars each." delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:nil];
    // optional - add more buttons:
    [alert addButtonWithTitle:@"Yes"];
    [alert show];
    return;

}

//salt the password
NSString* saltedPassword = [NSString stringWithFormat:@"%@%@", fldPassword.text, kSalt];

//prepare the hashed storage
NSString* hashedPassword = nil;
unsigned char hashedPasswordData[CC_SHA1_DIGEST_LENGTH];

//hash the pass
NSData *data = [saltedPassword dataUsingEncoding: NSUTF8StringEncoding];
if (CC_SHA1([data bytes], [data length], hashedPasswordData)) {
    hashedPassword = [[NSString alloc] initWithBytes:hashedPasswordData length:sizeof(hashedPasswordData) encoding:NSASCIIStringEncoding];
} else {

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Opps!!" message:@"Password cannot be reset!" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:nil];
    // optional - add more buttons:
    [alert addButtonWithTitle:@"Yes"];
    [alert show];
    return;
}

//************ THIS IS WHERE THE ERROR OCCURS *****************//
//check whether it's a login or register 
NSString* command = (sender.tag==1)?@"register":@"login";
NSMutableDictionary* params =[NSMutableDictionary dictionaryWithObjectsAndKeys:
                              command, @"command",
                              fldUserName.text, @"username",
                              hashedPassword, @"password",
                              nil];

//make the call to the web API
[[API sharedInstance] commandWithParams:params
                           onCompletion:^(NSDictionary *json) {
                               //handle the response
                               //result returned
                               NSDictionary* res = [[json objectForKey:@"result"] objectAtIndex:0];

                               if ([json objectForKey:@"error"]==nil && [[res objectForKey:@"IdUser"] intValue]>0) {
                                   //success
                                   [[API sharedInstance] setUser: res];
                                   [self.presentingViewController dismissViewControllerAnimated:YES completion:nil];

                                   //show message to the user
                                   [[[UIAlertView alloc] initWithTitle:@"Logged in"
                                                               message:[NSString stringWithFormat:@"Welcome %@",[res objectForKey:@"username"] ]
                                                              delegate:nil
                                                     cancelButtonTitle:@"Close"
                                                     otherButtonTitles: nil] show];

                               } else {
                                   //error

                                   UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Opps!!" message:@"Server down? Try Again" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:nil];
                                   // optional - add more buttons:
                                   [alert addButtonWithTitle:@"Yes"];
                                   [alert show];
                                   return;

                               }

                           }];

}

当我尝试构建项目(实际上是工作区)时,出现错误:

when I try to build the project (workspace actually) I get the error:

在类型为"_strong id"的对象上找不到属性标记"

Property 'tag' not found on object of type '_strong id'

我正在使用针对iOS7的xcode 5.0部署.

I am using xcode 5.0 deploying for iOS7.

谢谢

推荐答案

属性语法不能与通用id类型的变量一起使用.

Property syntax cannot be used with variables of the generic id type.

所以用方法[sender tag]更好代替sender.tag, 在方法定义中使用sender参数的实际类型:

So either replace sender.tag by the method call [sender tag] or better, use the actual type of the sender argument in the method definition:

- (IBAction)btnLoginRegisterTapped:(UIButton *)sender { ... }

提示:在Xcode中使用"Control-Drag"创建动作时, 使用类型"字段中的弹出窗口选择发件人的实际类型. 然后使用正确的参数类型创建操作方法.

Tip: When creating the action with "Control-Drag" in Xcode, use the pop-up in the "Type" field to select the actual type of the sender. Then the action method is created with the correct argument type.

这篇关于在类型为"_strong id"的对象上找不到属性“标签"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆