Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些与 Flurry 的定时事件有关的问题:
1)。如果我logEvent (String eventId, boolean timed)用来记录一个定时事件并且从不调用endTimedEvent(String),这个事件会发生什么?它是否会被记录——也许在会话结束时?
logEvent (String eventId, boolean timed)
endTimedEvent(String)
2)。如果我调用一次logEvent (String eventId, boolean timed)和两次endTimedEvent(String),第二次调用会发生什么endTimedEvent?
endTimedEvent
根据Flurry iOS 4.3.0 文档:
如果应用程序在结束定时事件之前后台运行,Flurry SDK 将自动结束该事件的计时器。如果在先前终止的事件上调用 endTimedEvent:withParameters: 将被忽略。
你应该做一个临时的事件并尝试这两个。我假设如果事件永远不会结束,则不会记录第一个事件。同样,我猜第二个事件只会记录一次而不是两次。