gpt4 book ai didi

ios - Facebook 应用邀请 iOS SDK 无法显示邀请 VC

转载 作者:搜寻专家 更新时间:2023-11-01 06:34:01 25 4
gpt4 key购买 nike

所以这是我的应用程序邀请代码:

private func inviteFriends() {

let content = FBSDKAppInviteContent()
content.appLinkURL = URL(string: "...")
content.appInvitePreviewImageURL = URL(string: "...")
FBSDKAppInviteDialog.show(from: self, with: content, delegate: nil)
}

这段代码工作正常,但如果我尝试像这样添加促销代码:

private func inviteFriends() {

let content = FBSDKAppInviteContent()
content.appLinkURL = URL(string: "...")
content.appInvitePreviewImageURL = URL(string: "...")
content.promotionCode = "preview"
content.promotionText = "Use the *preview* code to unlock the app"
FBSDKAppInviteDialog.show(from: self, with: content, delegate: nil)
}

邀请的 VC 不再显示(调用了函数但没有显示)。我在这里错过了什么?

最佳答案

问题是我使用了像 * 这样的特殊字符,所以删除它会使应用程序正常工作我的最终代码是这样的:

private func inviteFriends() {

let content = FBSDKAppInviteContent()
content.appLinkURL = URL(string: "...")
content.appInvitePreviewImageURL = URL(string: "...")
content.promotionCode = "preview"
content.promotionText = "Use the preview code to unlock the app"
FBSDKAppInviteDialog.show(from: self, with: content, delegate: nil)
}

关于ios - Facebook 应用邀请 iOS SDK 无法显示邀请 VC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43764714/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com