29 lines
691 B
Objective-C
29 lines
691 B
Objective-C
//
|
|
// GiGaNavTitileView.m
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/8/23.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import "GiGaNavTitileView.h"
|
|
|
|
@implementation GiGaNavTitileView
|
|
|
|
- (id)initWithString:(NSString *)str frame:(CGRect)frame
|
|
{
|
|
if (self = [super initWithFrame:frame]) {
|
|
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, frame.size.width, 44)];
|
|
label.textColor = GIGAUIColorFromRGBA(0x777777);
|
|
label.text = str;
|
|
label.font = [UIFont fontWithName:@"PingFangSC-Medium" size:18.f];
|
|
label.textAlignment = NSTextAlignmentCenter;
|
|
[self addSubview:label];
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
|
|
@end
|