宠物店修改
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// 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
|
||||
Reference in New Issue
Block a user