简体   繁体   中英

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[QBDDXMLElement attributeFloatValueForName:withDefaultValue:]:

- (void)completedWithResult:(Result *)result{
   // QuickBlox session creation  result
    if([result isKindOfClass:[QBAAuthSessionCreationResult class]]){

        // Success result
        if(result.success){

            // Set QuickBlox Chat delegate
            //
            [QBChat instance].delegate = self;

            QBUUser *user = [QBUUser user];
            user.ID = ((QBAAuthSessionCreationResult *)result).session.userID;
            user.password  = @"password";


            // Login to QuickBlox Chat

            [[QBChat instance] loginWithUser:user];
        }
        else
        {

            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:[[result errors] description] delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
            [alert show];
        }
    }
}

-[QBDDXMLElement attributeFloatValueForName:withDefaultValue:]: unrecognized selector sent to instance 0x96c4fe0 2013-12-10 16:06:46.716 QUickBloxTestApp[5990:3907] Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[QBDDXMLElement attributeFloatValueForName:withDefaultValue:]: unrecognized selector sent to instance 0x96c4fe0' *

App crashes while it invoke [[QBChat instance] loginWithUser:user];

Check this guide http://quickblox.com/developers/IOS-how-to-connect-Quickblox-framework

Looks like you forgot to add some frameworks like libxml , libresolv , libz or so

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM