user757812
user757812

Reputation: 581

how to check device is not able to send SMS

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

Answers (3)

djromero
djromero

Reputation: 19641

You can try checking for UIDeviceSMSCapability in UI Device extension categories from Erica Sadun.

Upvotes: 0

omz
omz

Reputation: 53551

BOOL canSend = [MFMessageComposeViewController canSendText];

Upvotes: 2

user754229
user754229

Reputation: 317

try this -

if([MFMessageComposeViewController canSendText])
    {
       // send sms
    }

Upvotes: 6

Related Questions