我正在将可可豆用于谷歌分析。
吊舱文件
source 'https://github.com/CocoaPods/Specs.git'
target 'MyProject' do
pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
pod 'FBSDKLoginKit'
pod 'GoogleAnalytics'
end
桥接头
#import <FBSDKCoreKit/FBSDKCoreKit.h>
#import <FBSDKLoginKit/FBSDKLoginKit.h>
#import <FBSDKShareKit/FBSDKShareKit.h>
#import "GAI.h"
#import "GAIFields.h"
#import "GAIDictionaryBuilder.h"
一切正常,但是在将 GoogleAnalytics 添加到我的 pod Xcode 后检测到一些不应该出现的错误。
func design(invitationInfo object: AnyObject) {
eventId = object["eventId"] as? String
message = object["message"] as? String
location = object["location"] as? String
}
在上述区域中,Xcode 要求解开所有值。
我无法理解该怎么做。因为我不能保证这些值会以字符串的形式出现。