-1
跟蹤iOS應用程序的響應時間如何使用工具完成。 也尋找一種工具或方法來捕獲在android應用程序中的關鍵交易的響應時間。如何跟蹤iOS應用程序中交易的響應時間
跟蹤iOS應用程序的響應時間如何使用工具完成。 也尋找一種工具或方法來捕獲在android應用程序中的關鍵交易的響應時間。如何跟蹤iOS應用程序中交易的響應時間
您也可以嘗試使用記錄NSLog的這樣的時候:
//log the time
NSDate *methodStart = [NSDate date];
//Do your transaction and when success execute ...
NSDate *methodFinish = [NSDate date];
NSTimeInterval executionTime = [methodFinish timeIntervalSinceDate:methodStart];
NSLog(@"Total time = %f", executionTime);