cometchat method not responding

223 Views Asked by At

checkCometChatUrl block is not execute with success or failure. my code is bellow.

    #import <MessageSDKFramework/CometChat.h>
    #import <MessageUI/MessageUI.h>

    @interface LoginVC ()<UITextFieldDelegate>
    {
        CometChat *cometChat;

    }

    @end

    @implementation LoginVC

    - (void)viewDidLoad{

        [super viewDidLoad];

        [cometChat checkCometChatUrl:@"https://cisner.com" success:^(NSDictionary *response) {
            NSLog(@"%@", response);

        //code not execute here

        } failure:^(NSError *error) {
            NSLog(@"%@", error.description);
          //code not execute here
        }];
        }
1

There are 1 best solutions below

3
On BEST ANSWER

@cometchat responce.....

Our team is already looking at your concern, which we believe is from Web end not from iOS SDK.