23 lines
545 B
Objective-C
23 lines
545 B
Objective-C
//
|
|
// FatherController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/10/29.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface FatherController : UITableViewController
|
|
@property(nonatomic,strong)UIBarButtonItem*back;
|
|
@property(nonatomic,strong)UIButton*bakbutton;
|
|
|
|
@property(nonatomic,strong)UIBarButtonItem*rightItem;
|
|
@property(nonatomic,strong)UIButton*rightButton;
|
|
|
|
-(void)showTitle:(NSString*)title messsage:(NSString*)message;
|
|
- (void)addTitleViewWithTitle:(NSString *)title;
|
|
-(void)goBackAction;
|
|
|
|
@end
|