bonus-material-app/nativeplugins/Mpaas-Scan/ios/mPaas.framework/Headers/AUBarButtonItem+MPaaS.h

31 lines
894 B
C
Raw Normal View History

2024-12-20 09:23:59 +08:00
//
// AUBarButtonItem+MPaaS.h
// APMPaaS
//
// Created by yangwei on 2017/5/31.
// Copyright © 2017年 Alipay. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@protocol AUBarButtonItemClass <NSObject>
@property(nonatomic, strong) NSString *backButtonTitle; // 返回按钮title
@property(nonatomic, strong) UIImage *backButtonImage; // 返回按钮图片
@property(nonatomic, strong) UIColor *titleColor; // 返回按钮文本颜色
@property(nonatomic, assign) BOOL hideBackButtonImage; //隐藏返回按钮图片,提供给框架使用
/**
*
*
* @param title
* @param target
* @param action
*
* @return AUBarButtonItem
*/
+ (id<AUBarButtonItemClass>)backBarButtonItemWithTitle:(NSString *)title target:(id)target action:(SEL)action;
@end