18 lines
411 B
Objective-C
18 lines
411 B
Objective-C
//
|
|
// GiGaNavTitileView.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/8/23.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface GiGaNavTitileView : UIView
|
|
- (id)initWithString:(NSString *)str frame:(CGRect)frame;
|
|
@property(nonatomic,copy) NSString *titleStr;
|
|
@property(nonatomic,strong) UILabel *navlabel;
|
|
@property(nonatomic,strong) UIColor *titleColor;
|
|
|
|
@end
|