22 lines
442 B
Objective-C
22 lines
442 B
Objective-C
//
|
|
// MessageAlertView.h
|
|
// Ifish
|
|
//
|
|
// Created by wbzhan on 2019/5/20.
|
|
// Copyright © 2019 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
/**
|
|
多功能下拉框
|
|
*/
|
|
typedef void (^MessageComboBoxBlock)(NSInteger tag);
|
|
@interface MessageAlertView : UIView
|
|
Copy MessageComboBoxBlock comboxBlock;
|
|
-(void)loadInfoWithTitle:(NSArray *)titleArray Icons:(NSArray *)iconsArray;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|