24 lines
350 B
Objective-C
24 lines
350 B
Objective-C
//
|
|
// GiGaNoNetWorkView.m
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/4.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import "GiGaNoNetWorkView.h"
|
|
|
|
@implementation GiGaNoNetWorkView
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame
|
|
{
|
|
self = [super initWithFrame:frame];
|
|
if (self) {
|
|
|
|
}
|
|
return self;
|
|
}
|
|
|
|
|
|
@end
|