2016-01-22 62 views
1

我已經在iOS中實施谷歌應用程序邀請。代碼:谷歌應用程序邀請短信沒有得到發送,但電子郵件工作正常

self.inviteDialog = [GINInvite inviteDialog]; 
[self.inviteDialog setInviteDelegate: self]; 
NSString* message = [NSString stringWithFormat:@"Message", 
        [[GIDSignIn sharedInstance] currentUser].profile.name]; 
[self.inviteDialog setMessage: message]; 
[self.inviteDialog setTitle: @"App"]; 
[self.inviteDialog open]; 

我可以發送電子郵件,但短信沒有發送。

當我輸入一個電話號碼「MFMessageComposeViewController」打開與文本:

「消息鏈接」,但隨後的短信中,無法發送。

請幫

+0

可能的重複[谷歌應用程序邀請 - 短信不發送](http://stackoverflow.com/questions/32713748/google-app-invite-sms-are-not-sent) –

回答

0

短信沒有發送時,消息文本中包含一些「more special」字。

嘗試使用較少數量的符號。

嘗試減少消息長度。

相關問題