2011-07-14 30 views
0

在我的應用程序中,如果用戶沒有在他們的iPhone上配置他們的電子郵件帳戶,那麼當用戶打開應用程序時,它將要求電子郵件配置(意味着應用程序重定向到「設置>>郵件」添加賬戶「添加賬戶頁面),我想打開我的一頁。 「設置>>郵件>>添加帳戶」(添加帳戶頁面)是可能的。?

我該怎麼做?

我搜索並發現堆棧溢出中的一個類似的問題,但它沒有幫助。 just like this so question

+0

可能重複的[如何在iphone中以編程方式顯示郵件設置頁?](http://stackoverflow.com/questions/6015855/how-do-i-show-the-mail-setup-page-programatically - 在iphone) – Jim

回答

0

只看到官方樣片code.Here是鏈接:SampleCode

找到launchMailAppOnDevice()函數。

// Launches the Mail application on the device. 
-(void)launchMailAppOnDevice 
{ 
    NSString *recipients = @"mailto:[email protected][email protected],[email protected]&subject=Hello from California!"; 
    NSString *body = @"&body=It is raining in sunny California!"; 

    NSString *email = [NSString stringWithFormat:@"%@%@", recipients, body]; 
    email = [email stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; 

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:email]]; 
} 

這對我很有用。希望它能幫助你。

+0

尼斯..坦克兄弟... – iBapu

相關問題