2011-07-13 26 views
0

我想發佈在iPod上運行時將禁用其SMS功能的應用程序。我知道我必須將設備的所需功能聲明爲info.plist,但我不知道是否可以忽略該文件的SMS功能聲明,但在檢測到應用程序中的設備類型後仍然可以使用它。在iPod上運行時禁用應用程序上的SMS功能

<key>UIRequiredDeviceCapabilities</key> 
<array> 
<string>wifi</string> 
<!--string>sms</string--> 
<string>still-camera</string> 
</array> 

感謝

+0

[此鏈接可能HALP你....] [1] [1]:http://stackoverflow.com/questions/448162/確定裝置-iphone-iPod的觸摸與 - iphone-SDK – koti

回答

3
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"sms:11111"]]){ 
    //do stuff for sms 
}else{ 
    NSLog(@"I don't suport sms"); 
} 
相關問題