使用新的 http://Xamarin.com Flurry 的包装程序集(感谢 Xamarin)我正在将使用旧绑定(bind)的应用程序移植到新应用程序。
在哪里为应用设置 Flurry API key ?
Best Answer-推荐答案 strong>
API key 在 AppDelegate 的 FinishedLaunching 方法中设置,并且应该在任何其他委托(delegate)代码之前调用:
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
FlurryAnalytics.StartSession("YOUR_API_KEY");
//
//your code goes here...
//
}
查看示例,了解 API 使用情况:
https://github.com/mono/monotouch-bindings/tree/master/FlurryAnalytics/sample
关于ios - 单触 : Flurry Analytics,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/9488172/
|