21 lines
369 B
Objective-C
21 lines
369 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;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|