24 lines
670 B
C
24 lines
670 B
C
|
|
//
|
||
|
|
// FirstViewController.h
|
||
|
|
// Talk
|
||
|
|
//
|
||
|
|
// Created by xuzs on 22/10/11.
|
||
|
|
// Copyright (c) 2022年 xuzs. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
@interface BaseTableViewController : UITableViewController
|
||
|
|
|
||
|
|
@property (nonatomic, strong)UIImage *navLeftImg;
|
||
|
|
@property (nonatomic, strong)UIImage *navRightImg;
|
||
|
|
@property (nonatomic, strong)UILabel *navMidLabel;
|
||
|
|
@property (nonatomic, strong)UILabel *toastLabel;
|
||
|
|
@property (nonatomic, strong)NSTimer *timer_hide_toast;
|
||
|
|
- (void) setNavTitle:(NSString *)title;
|
||
|
|
- (void)alert:(NSString *)msg;
|
||
|
|
- (void)setNavLeft:(NSString *)imgname action:(SEL)action;
|
||
|
|
- (void)setNavRight:(NSString *)imgname action:(SEL)action;
|
||
|
|
@end
|
||
|
|
|