iOS效能優化之頁面載入速率

菠蘿ngmm發表於2018-09-02

iOS效能優化之頁面載入速度

iOS效能優化之頁面載入速率

前言

之前蒐羅了網上很多關於iOS效能優化方面的資料 ,本人和我的小夥伴們也用了一些時間針對自己的App進行了App的啟動速率、頁面的載入速率和 頁面的幀率方面進行了優化,所以結合了理論和實踐,把我們在實踐中主要踩過的坑和需要注意的東西 ,總結了一下,希望可以幫到正在準備進行App的效能優化的你。今天主要講一下App的頁面載入速率的優化。

目的

為了找到真正使我們的App緩慢的原因,我們使用Xcode或者一些第三方平臺,進行資料測試;

一、頁面載入速率的定義

頁面載入速率:關於頁面的載入速度的統計,我們是測試一個viewcontroller從viewdidload的第一行到viewdidappear的最後一行所用的時間。

二、頁面載入速率的目標值

目標:頁面載入速率最好完美的時間在0.3s左右 為了弄明白,到底是什麼原因讓我們的App,頁面載入速度相對來說比較慢,我們對頁面的UI進行優化,資料也進行了非同步載入,我們hook資料一看,頁面的載入速度果然有所減少,但是減少的值大概只有0.03s,很明顯這個值不足以達到我們想要的效果,後來,通過寫了一些測試demo,針對空白頁面和有UI建立的頁面進行各種對比後,似乎和我們頁面載入過程中的push動畫有很大的關係;下面所做的實驗主要是為了驗證這個問題,針對這個問題,我選取了我們工程的一個類,對有push進入到這個頁面有過場動畫和沒有動畫進行測試,以下資料是測試結果:

iOS效能優化之頁面載入速率

通過這個實驗,我們可以看出,不加動畫的話,我們的頁面載入的速度可以說是沒有任何的卡頓,超級迅速,但是如果把過場動畫給開啟,單是動畫的時間就是在0.5s左右,而s我們是希望使用者在點選跳轉頁面的時候,目標是頁面在0.3s【注:0.3s是根據自己App的情況 ,基於效能優化的2-5-8原則來定義的。(2-5-8原則:就是當使用者能夠在2秒以內得到響應時,會感覺系統的響應很快;當使用者在2-5秒之間得到響應時,會感覺系統的響應速度還可以;當使用者在5-8秒以內得到響應時,會感覺系統的響應速度很慢,但是還可以接受;而當使用者在超過8秒後仍然無法得到響應時,會感覺系統糟透了,或者認為系統已經失去響應,而選擇離開)】左右呈現,這如果加動畫,這個目標很難達到;不過通過查詢相關資料,我們證實了我們可以把如果有過場動畫的頁面,去掉動畫,而是通過我們自己去給使用者新增一個過場動畫,而這個時間是可以受到我們自己的控制,而不是傻傻的等動畫結束後再載入頁面內容。的這就是說,可以一邊動畫的時候,一邊已經開始載入頁面相關東西了,這樣可以大大的優化頁面載入時間。

三、優化前資料

iOS效能優化之頁面載入速率

四、 優化後的資料

iOS效能優化之頁面載入速率
到這裡 ,你一定想問 :我該如何hook資料的???

五、如何進行資料的收集

  1. 給UIViewController 建立一個分類 eg :UIViewController+Swizzle

  2. 程式碼如下

#import <UIKit/UIKit.h>
#import <objc/runtime.h>

@interface UIViewController (Swizzle)
@property(nonatomic,assign) CFAbsoluteTime viewLoadStartTime;

@end

複製程式碼
#import "UIViewController+Swizzle.h"
#import <objc/runtime.h>

static char *viewLoadStartTimeKey = "viewLoadStartTimeKey";
@implementation UIViewController (Swizzle)
-(void)setViewLoadStartTime:(CFAbsoluteTime)viewLoadStartTime{
objc_setAssociatedObject(self, &viewLoadStartTimeKey, @(viewLoadStartTime), OBJC_ASSOCIATION_COPY);

}
-(CFAbsoluteTime)viewLoadStartTime{
return [objc_getAssociatedObject(self, &viewLoadStartTimeKey) doubleValue];
}
+ (void)load
{
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
SEL origSel = @selector(viewDidAppear:);
SEL swizSel = @selector(swiz_viewDidAppear:);
[UIViewController swizzleMethods:[self class] originalSelector:origSel swizzledSelector:swizSel];

SEL vcWillAppearSel=@selector(viewWillAppear:);
SEL swizWillAppearSel=@selector(swiz_viewWillAppear:);
[UIViewController swizzleMethods:[self class] originalSelector:vcWillAppearSel swizzledSelector:swizWillAppearSel];

SEL vcDidLoadSel=@selector(viewDidLoad);
SEL swizDidLoadSel=@selector(swiz_viewDidLoad);
[UIViewController swizzleMethods:[self class] originalSelector:vcDidLoadSel swizzledSelector:swizDidLoadSel];

SEL vcDidDisappearSel=@selector(viewDidDisappear:);
SEL swizDidDisappearSel=@selector(swiz_viewDidDisappear:);
[UIViewController swizzleMethods:[self class] originalSelector:vcDidDisappearSel swizzledSelector:swizDidDisappearSel];

SEL vcWillDisappearSel=@selector(viewWillDisappear:);
SEL swizWillDisappearSel=@selector(swiz_viewWillDisappear:);
[UIViewController swizzleMethods:[self class] originalSelector:vcWillDisappearSel swizzledSelector:swizWillDisappearSel];
});
}

+ (void)swizzleMethods:(Class)class originalSelector:(SEL)origSel swizzledSelector:(SEL)swizSel
{
Method origMethod = class_getInstanceMethod(class, origSel);
Method swizMethod = class_getInstanceMethod(class, swizSel);

//class_addMethod will fail if original method already exists
BOOL didAddMethod = class_addMethod(class, origSel, method_getImplementation(swizMethod), method_getTypeEncoding(swizMethod));
if (didAddMethod) {
class_replaceMethod(class, swizSel, method_getImplementation(origMethod), method_getTypeEncoding(origMethod));
} else {
//origMethod and swizMethod already exist
method_exchangeImplementations(origMethod, swizMethod);
}
}

- (void)swiz_viewDidAppear:(BOOL)animated
{
[self swiz_viewDidAppear:animated];
if (self.viewLoadStartTime) {
CFAbsoluteTime linkTime = (CACurrentMediaTime() - self.viewLoadStartTime);

NGLog(@" %f s--------------------ssssss   %@:速度:         %f s",self.viewLoadStartTime, self.class,linkTime  );
self.viewLoadStartTime = 0;
}
}

-(void)swiz_viewWillAppear:(BOOL)animated
{
[self swiz_viewWillAppear:animated];
}

-(void)swiz_viewDidDisappear:(BOOL)animated
{
[self swiz_viewDidDisappear:animated];
}

-(void)swiz_viewWillDisappear:(BOOL)animated
{
[self swiz_viewWillDisappear:animated];
}
-(void)swiz_viewDidLoad
{
self.viewLoadStartTime =CACurrentMediaTime();
NSLog(@" %@swiz_viewDidLoad startTime:%f",self.class, self.viewLoadStartTime );
[self swiz_viewDidLoad];
}

@end
複製程式碼

##如何進行優化

  1. 方法:充分利用push 動畫的時間 ,使頁面在進入的時候,同事進行類似push 動畫,這樣可以充分減少頁面的載入速度(不包括網路請求時間,網路的請求的時間我們這邊不好控制)。

  2. 具體實現程式碼如下 重寫 push方法

- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated {

if (self.viewControllers.count > 0) {
viewController.hidesBottomBarWhenPushed = YES;
if (animated) {

CATransition *animation = [CATransition animation];
animation.duration = 0.4f;
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
animation.type = kCATransitionPush;
animation.subtype = kCATransitionFromRight;
[self.navigationController.view.layer addAnimation:animation forKey:nil];
[self.view.layer addAnimation:animation forKey:nil];
[super pushViewController:viewController animated:NO];
return;
}
}
[super pushViewController:viewController animated:animated];
}

複製程式碼
  1. 通過控制檯 ,我們就可以看到頁面的載入的速度了,主要的方法是swiz_viewDidLoad 和swiz_viewDidAppear

六、優化後的結果

iOS效能優化之頁面載入速率

七、結果分析

我們可以看出,我們的頁面的viewDidAppear是在過場動畫結束後被呼叫的,而過場動畫的持續時間是0.5秒左右。所以我們的頁面平均在0.8秒左右的頁面,如果要優化得更好,我們可以看有沒有方法解決這個問題,如果能替換掉動畫,讓動畫在進行的過程中 ,頁面的載入也在非同步的進行中,這樣 我們就可以縮短頁面的載入時間了;注:但這個載入對載入h5的頁面不適用;

一個簡單的demo ,由於內容不多 ,所以效果不是太明顯 github地址:

github.com/chenHuiMing…

相關文章