16 lines
290 B
Objective-C
16 lines
290 B
Objective-C
//
|
|
// UIBarButtonItem+Back.h
|
|
// TLChat
|
|
//
|
|
// Created by 李伯坤 on 2017/9/13.
|
|
// Copyright © 2017年 李伯坤. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface UIBarButtonItem (Back)
|
|
|
|
- (id)initWithBackTitle:(NSString *)title target:(id)target action:(SEL)action;
|
|
|
|
@end
|