在新的联系人框架中,我正在尝试添加社交个人资料,而我正在使用一行代码在其他项目中运行,但由于某种原因,它只是在我正在使用的特定代码中无效。是下面的代码
let twitterProfile = CNLabeledValue(label: "Twitter", value:
CNSocialProfile(urlString: nil, username: "ios_blog",
userIdentifier: nil, service: CNSocialProfileServiceTwitter))
contactData.socialProfiles = [twitterProfile]
我不断收到此错误消息:&#34; Cannot Subscript a value of type CNLabeledValue<CNSocialProfile> with an index of type CNLabeledValue<CNSocialProfile>.
&#34;
如果我把它放在另一个项目中它可以工作,但我需要它在我的工作,并且由于某种原因我只是继续得到这个错误。
如果有人能告诉我自己做错了什么,我真的很感激。
答案 0 :(得分:1)
您的问题无法按照描述重现。这段代码编译并运行得很好:
let contactData = CNMutableContact()
let twitterProfile = CNLabeledValue(label: "Twitter", value: CNSocialProfile(urlString: nil, username: "ios_blog", userIdentifier: nil, service: CNSocialProfileServiceTwitter))
contactData.socialProfiles = [twitterProfile]
很好地说这个问题是由其他代码引起的,这可能是真的,但你并没有显示我们任何其他代码。你告诉我们的代码是有效的。
答案 1 :(得分:0)
解决方案是,在我得到错误的方法中是一个吸气剂,这就是为什么它没有工作。 为了解决这个问题,你需要使用一个函数。