mop-flutter-sdk/example/ios/Runner/LoadingView.m

30 lines
734 B
Dart
Raw Permalink Normal View History

2023-04-10 11:23:11 +08:00
//
// LoadingView.m
// Runner
//
// Created by Haley on 2023/4/9.
//
#import "LoadingView.h"
@implementation LoadingView
- (instancetype)initWithFrame:(CGRect)frame {
if ([super initWithFrame:frame]) {
2023-04-10 16:22:48 +08:00
self.loadingView.padding = 5;
self.loadingView.dotView.backgroundColor = [UIColor redColor];
self.loadingView.animation.duration = 2;
2023-04-10 11:23:11 +08:00
self.titleLabel.textColor = [UIColor redColor];
}
return self;
}
- (void)layoutSubviews
{
[super layoutSubviews];
// 修改小程序logo应该是从管理后台上传新的小程序图标因为更多面板、关于页面也会展示小程序logo只改这里只是loding页面生效
self.bottomImageView.hidden = YES;
}
@end