33 lines
1.1 KiB
Objective-C
33 lines
1.1 KiB
Objective-C
//
|
|
// StoreNameView.h
|
|
// Ifish
|
|
//
|
|
// Created by 祝发冬 on 2020/4/20.
|
|
// Copyright © 2020 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "LXPopView.h"
|
|
#import "DXPopover.h"
|
|
#import "AppDelegate.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface StoreNameView : UIView<UITextFieldDelegate,UITableViewDelegate,UITableViewDataSource>
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *createStoreLabel;
|
|
@property (weak, nonatomic) IBOutlet UITextField *storeNameField;
|
|
@property (weak, nonatomic) IBOutlet UITextField *oldStoreNameField;
|
|
@property (weak, nonatomic) IBOutlet UIButton *cancelButton;
|
|
@property (weak, nonatomic) IBOutlet UIButton *sureButton;
|
|
@property (nonatomic, copy) void(^sureBlock)(NSString*name) ;
|
|
@property (nonatomic, copy) void(^cancelBlock)() ;
|
|
@property (nonatomic, strong) DXPopover *popover;
|
|
@property (weak, nonatomic) IBOutlet UILabel *oldLabel;
|
|
@property(nonatomic,strong) UITableView *tableView;
|
|
@property (nonatomic, strong) NSArray *titles;
|
|
@property (nonatomic, weak) UIViewController *controller;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|