You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
841 B
44 lines
841 B
1 year ago
|
//
|
||
|
// RailADNameChooseVC.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by WeiChaoZheng on 2018/11/7.
|
||
|
// Copyright © 2018年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "baseViewController.h"
|
||
|
#import "Rail.h"
|
||
|
@interface RailADNameChooseVC : baseViewController
|
||
|
|
||
|
@property (strong, nonatomic) IBOutlet UIView *topView;
|
||
|
|
||
|
@property (strong, nonatomic) IBOutlet UIBarButtonItem *saveBtn;
|
||
|
|
||
|
|
||
|
|
||
|
@property (strong, nonatomic) IBOutlet UITextField *addressTextField;
|
||
|
/**
|
||
|
删除的 按钮
|
||
|
*/
|
||
|
@property (strong, nonatomic) IBOutlet UIButton *closeBtn;
|
||
|
|
||
|
|
||
|
/**
|
||
|
|
||
|
*/
|
||
|
@property (strong, nonatomic) IBOutlet UICollectionView *myCollection;
|
||
|
|
||
|
|
||
|
@property (nonatomic,strong) Rail*infoRail;
|
||
|
|
||
|
@end
|
||
|
|
||
|
@interface RailADNameChooseCollectionCell : UICollectionViewCell
|
||
|
/**
|
||
|
item 标题Label
|
||
|
*/
|
||
|
@property (strong, nonatomic) IBOutlet UILabel *itemTitleLabel;
|
||
|
|
||
|
@end
|