| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // JXLoginTopView.m
- // shiku_im
- //
- // Created by JayLuo on 2020/7/1.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import "JXLoginTopView.h"
- @interface JXLoginTopView()
- @property (strong, nonatomic) IBOutlet JXLoginTopView *view;
- @end
- @implementation JXLoginTopView
- + (instancetype)customView
- {
- JXLoginTopView *view = [[[NSBundle mainBundle] loadNibNamed:NSStringFromClass(self) owner:nil options:nil] lastObject];
- return view;
- }
- //重写initWithCoder:方法,初始化控件
- - (instancetype)initWithCoder:(NSCoder *)coder{
- self = [super initWithCoder:coder];
- if (self) {
-
- }
- return self;
- }
- - (void)layoutSubviews
- {
- [super layoutSubviews];
-
-
- }
- @end
|