0

我有一个用于新安装的页面。

当用户安装此应用程序时,应用程序肯定会进入“调查”页面。

当我从设备内的 Xcode 直接调试时,这会正确运行。

但是,我生成了一个 ipa 文件并同步到设备中。应用程序跳过“调查”页面并直接转到另一个页面。

在同步之前,我已经删除了旧应用程序。

这是检查逻辑。仅供参考。

DatabaseAction *getsurvey = [[[DatabaseAction alloc] init] autorelease];
NSArray *survey = [getsurvey retrieveSurvey];
int check;
for(SurveyForm *form in survey){
    check = form.Submitted;
    break;
}

if(check == 1){
    Main_AllLatestNews *GtestClasssViewController=[[[Main_AllLatestNews alloc] initWithNibName:@"Main_AllLatestNews"  bundle:nil] autorelease];
    GtestClasssViewController.autodownload = YES;
    [self presentModalViewController:GtestClasssViewController animated:NO];
}else{
    Menu_newUserForm *GtestClasssViewController=[[[Menu_newUserForm alloc] initWithNibName:@"Menu_newUserForm"  bundle:nil] autorelease];
    [self presentModalViewController:GtestClasssViewController animated:NO];
}
4

0 回答 0