2016-01-22 70 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”字。

尝试使用较少数量的符号。

尝试减少消息长度。

相关问题