簡體   English   中英

iPhone應用程序退出並顯示“未安裝SIM卡”

[英]iphone app exit with “No SIM card installed”

我使用MFMessageComposeViewController來發送App短信。 在iPhone 4.0中,如果沒有SIM卡,則該應用程序退出。 它只是彈出消息“未安裝SIM卡”。 委托回調MessageComposeResultSent。 但是應用程序退出。 有什么辦法可以防止它退出? 或如何檢查手機中是否有SIM卡?

下面的代碼段:

    /* Open the system sms service, copying the sms text in system clipboard. */
- (void) sendSMSAsURLRequest {
    NSString *phoneNumber = friend.phoneMobile;
    UIPasteboard *pasteBoard = [UIPasteboard generalPasteboard];
    NSString *textUTIType = (NSString *)kUTTypeUTF8PlainText; // add MobileCoreServices.framework for this type.
    [pasteBoard setValue:[self buildSMSText] forPasteboardType:textUTIType];
    NSString *urlString = [NSString stringWithFormat:@"sms:%@", phoneNumber];
    NSURL *url = [[NSURL alloc] initWithString: urlString];
    [[UIApplication sharedApplication] openURL: url];
    [url release];
}

-(void) sendInAppSMS {
    MFMessageComposeViewController *controller = [[[MFMessageComposeViewController alloc] init] autorelease];
    controller.delegate = self;
    if([MFMessageComposeViewController canSendText])
    {
        NSString *smsText = [self buildSMSText];
        controller.body = smsText;
        controller.recipients = [NSArray arrayWithObjects:friend.phoneMobile, nil];
        controller.messageComposeDelegate = self;        
        [self presentModalViewController:controller animated:YES];
    }
}

- (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result
{
    switch (result) {
        case MessageComposeResultCancelled:
            NSLog(@"Cancelled");
            break;
        case MessageComposeResultFailed:{
            NSString *alertString = NSLocalizedString(@"Unknown Error. Failed to send message", @"");
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:alertString delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
            [alert show];
            [alert release];
            break;
        }
        case MessageComposeResultSent:
            NSLog(@"SMS sent");
            break;
        default:
            break;
    }    
    [self dismissModalViewControllerAnimated:YES];
}

要檢測是否已安裝Sim卡,請使用以下代碼:

@import CoreTelephony;


CTTelephonyNetworkInfo *networkInfo = [CTTelephonyNetworkInfo new];
CTCarrier *carrier = [networkInfo subscriberCellularProvider];
if (!carrier.isoCountryCode) {
    UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"No SIM Card Installed" message:nil delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
    [alert show];
}
else{
//Paste Your code here
}

我現在正在使用的解決方法是應用程序委托中的一個標志,

- (void)applicationWillResignActive:(UIApplication *)aNotification {
    if (shouldExitApp) {
        exit(0);
    }
}

在SMS發送視圖控制器中,

- (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result
{
    ((LuupAppDelegate *)[[UIApplication sharedApplication] delegate]).shouldExitApp = NO;

並再次設置該標志,當在SMS發送視圖控制器中時,

- (void) viewDidAppear:(BOOL)animated {
    ((LuupAppDelegate *)[[UIApplication sharedApplication] delegate]).shouldExitApp = YES;
    [super viewDidAppear:animated];

}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM