我开发了一个在iPhone上运行得非常好的phonegap应用程序.现在,我想将应用程序提交到appstore.以下是我提交申请时的程序:

直到昨天晚上,我甚至没有得到这个错误,今天早上,我存档项目,我得到这个错误.不确定是什么问题.
这是阻止我提交应用程序的最后阶段,非常令人沮丧,我试图在stackoverflow论坛上搜索相同的错误代码,我找不到一个与我的错误代码完全相同的帖子,这很奇怪.
请帮忙 :)
在我的iOS应用程序中,我需要我的用户能够恢复/重置他们的密码.我正在使用Drupal iOS SDK来管理用户登录.一切正常,但是我想弄清楚如何将用户的电子邮件地址发布到服务端点以触发drupal密码恢复电子邮件?例如,用户将电子邮件输入到UITextField,然后点击提交按钮.但是似乎没有任何相关的文件?
代码如下 - 我只是不确定我应该在sendButton中放入什么方法?DIOSUser?DIOSSession?
DIOSUser.m
+ (void)userSendPasswordRecoveryEmailWithEmailAddress: (NSString*)email
success:(void (^)(AFHTTPRequestOperation *operation, id responseObject)) success
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error)) failure {
NSString *path = [NSString stringWithFormat:@"user/request_new_password/%@", email];
NSLog(@"This is the input email %@", email);
[[DIOSSession sharedSession] sendRequestWithPath:path method:@"POST" params:nil success:success failure:failure];
}
Run Code Online (Sandbox Code Playgroud)
ViewController.m
- (void)viewDidLoad {
[super viewDidLoad];
self.forgotField.returnKeyType = UIReturnKeyDone;
[self.forgotField setDelegate:self];
// Do any additional setup after loading the view from its nib.
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(dismissKeyboard)];
[self.view addGestureRecognizer:tap];
}
- …Run Code Online (Sandbox Code Playgroud)