无法使用mailcore2从GMAIL创建文件夹

时间:2015-03-11 05:52:31

标签: iphone ipad ios8 mailcore2

我正在尝试使用mailcore2从gmail创建一个文件夹。我收到此错误“无法建立与服务器的稳定连接”。这种情况发生在gmail,yahoo和icloud等所有帐户中。有时它会创建,大部分都不会创建(不一致)。

这是我的代码:

    MCOIMAPFolderStatusOperation * op = [self.imapSession folderStatusOperation:@"123"];
    [op start:^(NSError *error, MCOIMAPFolderStatus * info) {
        if (info == nil) {
            // The requested folder does not exist.  Folder selection failed
            // Create the new folder
            MCOIMAPOperation * op1 = [self.imapSession createFolderOperation:newFolderName];
            [op1 start:^(NSError *error)
             {
                 if (error == nil)
                 {
                     status = TRUE;
                 }
             }];
        }

    }];

我收到错误消息: 无法建立与服务器的稳定连接

注意:self.imapsession!= NIL || self.imapsession!= NULL;

任何人都可以解释问题在哪里?

0 个答案:

没有答案