wendux / DSBridge-IOS

:earth_asia: A modern cross-platform JavaScript bridge, through which you can invoke each other's functions synchronously or asynchronously between JavaScript and native.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

我想从storyBoard里面使用这个View的时候, 可以在里面加入初始化方法吗?

JiaLiangoooo opened this issue · comments

#UIWebView

  • (instancetype)initWithCoder:(NSCoder *)aDecoder {
    self = [super initWithCoder:aDecoder];
    if (self) {
    self.scalesPageToFit = YES;
    self.delegate = self;
    }
    return self;
    }
commented

不建议在storyBoard中使用