Commit 46389c43 authored by yuzheng.tz's avatar yuzheng.tz

覆盖init方法,加上默认初始化实现

parent e0a4eda9
......@@ -38,6 +38,14 @@
@implementation TZImagePickerController
- (instancetype)init {
self = [super init];
if (self) {
self = [self initWithMaxImagesCount:9 delegate:nil];
}
return self;
}
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
- (void)viewDidLoad {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment