123456789101112131415161718192021 |
- //
- // ChatNewGroupVC.h
- // smartRhino
- //
- // Created by armin on 2019/11/5.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- ///新建群聊界面
- @interface ChatNewGroupVC : BaseViewController
- @property (nonatomic, strong) NSMutableArray * dataArray;
- +(ChatNewGroupVC *)initChatNewGroupVC;
- @end
- NS_ASSUME_NONNULL_END
|