Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Sign in
G
GMFlutterSDK
  • Project
    • Project
    • Details
    • Activity
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Board
    • Labels
    • Milestones
  • Merge Requests 0
    • Merge Requests 0
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • gengmeiios
  • GMFlutterSDK
  • Repository

Switch branch/tag
  • GMFlutterSDK
  • ..
  • Kit
  • GMView.m
Find file
BlameHistoryPermalink
  • jz's avatar
    create sdk · 2499948e
    jz authored 4 years ago
    2499948e
GMView.m 423 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
//
//  GMView.m
//  Gengmei
//
//  Created by wangyang on 9/14/15.
//  Copyright (c) 2015 Wanmeichuangyi. All rights reserved.
//

#import "GMView.h"

@implementation GMView


- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        [self setup];
    }
    return self;
}

- (void)awakeFromNib{
    [super awakeFromNib];
    [self setup];
}

- (void)setup{
    
}

@end

Replace GMView.m

Attach a file by drag & drop or click to upload


Cancel
A new branch will be created in your fork and a new merge request will be started.