Reputation: 581
I wanted to know is it possible to check that a device can send sms or not.. if my app is installed on the ipad the sms button should hide... how to do this?
Upvotes: 1
Views: 1056
Reputation: 19641
You can try checking for UIDeviceSMSCapability
in UI Device extension categories from Erica Sadun.
Upvotes: 0
Reputation: 317
try this -
if([MFMessageComposeViewController canSendText])
{
// send sms
}
Upvotes: 6