91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS如何實現通過按鈕添加和刪除控件

發布時間:2021-09-27 13:59:40 來源:億速云 閱讀:143 作者:小新 欄目:編程語言

這篇文章主要介紹iOS如何實現通過按鈕添加和刪除控件,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

先講一下這個demo主要部分,即通過按鈕實現增刪圖標

分析:

1、每一個圖標需要兩個數據,即圖片和描述用的字符串 ,所以創建一個Item類來封裝從plist文件讀取出來的數據:

1)plist文件如下:

2)Item類:

.h文件

#import <Foundation/Foundation.h>@interface Item : NSObject//描述的字符串@property(nonatomic,copy)NSString * desStr;//圖片路徑@property(nonatomic,copy)NSString * imgPath;-(instancetype)initWithString:(NSString *)desStr andimgPath:(NSString *)imgPath;@end

.m文件

#import "Item.h"@implementation Item-(instancetype)initWithString:(NSString *)desStr andimgPath:(NSString *)imgPath{ self = [super init]; if (self) {  self.desStr = desStr;  self.imgPath = imgPath; } return self;}@end

2、然后創建一個Model類用于封裝自定義的圖標模型,我的模型是將Model類繼承于UIScrollView類,然后設置其可以滾動,然后再創建一個占據整個scrollview可滾動部分大小的button添加上去。再分別在button上半部分添加UIImageView顯示圖片,在下半部分添加UILabel顯示描述文字,結構如下

重寫model的init方法,在創建對象時用item對象初始化:model類:

1).h文件

#import <UIKit/UIKit.h>#import "Item.h"@interface Model : UIScrollView@property(nonatomic,strong)UIButton *button;@property(nonatomic,strong)UILabel *label;//判斷button是否被點擊@property(nonatomic,assign)BOOL isClicked;-(instancetype)initWithItem:(Item *)item;//重置模型-(void)resetModel;@end

2).m文件

-(instancetype)initWithItem:(Item *)item{ self = [super initWithFrame:CGRectMake(20, 20, 80, 100)]; if (self) {  //設置模塊  self.contentSize = CGSizeMake(80, self.frame.size.height * 2);  self.pagingEnabled = NO;  //設置模塊屬性  self.button = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, self.frame.size.width, self.contentSize.height)];  [self.button addTarget:self action:@selector(buttonDidClicked) forControlEvents:UIControlEventTouchUpInside];  //添加圖片視圖到button上  UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];  [imgView setImage:[UIImage imageNamed:item.imgPath]];  [self.button addSubview:imgView];  //設置button是否被點擊  self.isClicked = NO;  [self addSubview:self.button];  self.label = [[UILabel alloc] initWithFrame:CGRectMake(0, self.frame.size.height, self.frame.size.width, self.frame.size.height)];  self.label.text = item.desStr;  self.label.font = [UIFont systemFontOfSize:15];  self.label.textColor = [UIColor blackColor];  self.label.numberOfLines = 0;  self.label.textAlignment = NSTextAlignmentLeft;  [self addSubview:self.label]; } return self;}

3)button的點擊事件:即點擊圖片文字描述就會從下面升上來,再點擊就會降下去的動作:

/label升降-(void)buttonDidClicked{ if (self.isClicked == NO) {  [UIView animateWithDuration:0.5 animations:^{   self.contentOffset = CGPointMake(0, self.frame.size.height);  }];  self.isClicked = YES; }else if (self.isClicked == YES) {  [UIView animateWithDuration:0.5 animations:^{   self.contentOffset = CGPointMake(0, 0);  }];  self.isClicked = NO; }}

另外,由于必須保證每次添加model到視圖上時顯示的是圖片,所以需要一個方法來復原到初始狀態,即一旦從視圖上刪除就復原:

//復原-(void)resetModel{  self.contentOffset = CGPointMake(0, 0);  self.isClicked = NO;}

3、模型準備好了,下面在viewController類里面寫一個方法將plist文件數據讀取出來封裝到item對象里面,再用item對象初始化model對象,將所有model對象存入可變數組(_allItems)里面:

//加載數據到物品-(void)loadData{//讀取數據 NSString *filePath = [[NSBundle mainBundle] pathForResource:@"shop" ofType:@"plist"]; NSArray *itemArr = [NSArray arrayWithContentsOfFile:filePath]; //創建模型 for (int i =0;i <[itemArr count] ; i++) {  Item *item = [[Item alloc] initWithString:[[itemArr objectAtIndex:i] objectForKey:@"title"] andimgPath:[[itemArr objectAtIndex:i] objectForKey:@"pic"]];  Model *model = [[Model alloc] initWithItem:item];  //未被添加的為0,添加好的為1  model.tag = 0;  [_allItems addObject:model]; }}

**注意:**model的tag是用于判斷model是否已經被添加到視圖里面,從而只會添加數組里面未添加的model,已添加的model也會用一個數組(displayedItems)來存儲,方便刪除

4、添加和刪除按鈕及其響應的方法:

1)add按鈕:

創建:

//添加添加按鈕 UIButton *addButton = [[UIButton alloc] initWithFrame:CGRectMake(_width*2/3, _height/10, 40, 40)]; [addButton setImage:[UIImage imageNamed:@"add"] forState:UIControlStateNormal]; [addButton addTarget:self action:@selector(add) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:addButton];

add方法:

//添加事件-(void)add{ NSInteger itemCount = [_displayedItems count]; for (Model* model in _allItems) {  if (model.tag == 0) {   switch (itemCount) {    case 1:     model.frame = CGRectMake(40 + model.frame.size.width, 20, 80, 100);     break;    case 2:     model.frame = CGRectMake(60 + model.frame.size.width*2, 20, 80, 100);     break;    case 3:     model.frame = CGRectMake(20,40 + model.frame.size.height, 80, 100);     break;    case 4:     model.frame = CGRectMake(40 + model.frame.size.width, 40 + model.frame.size.height, 80, 100);     break;    case 5:     model.frame = CGRectMake(60 + model.frame.size.width*2, 40 + model.frame.size.height, 80, 100);     break;    default:     break;   }   [_scrollView addSubview:model];   [_displayedItems addObject:model];   model.tag = 1;   break;  } }}

2)delete按鈕:

//添加刪除按鈕 UIButton *deleteButton = [[UIButton alloc] initWithFrame: CGRectMake(_width/5, _height/10, 40, 40)]; [deleteButton setImage:[UIImage imageNamed:@"delete"] forState:UIControlStateNormal]; [deleteButton addTarget:self action:@selector(delete) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:deleteButton];

delete方法:

-(void)delete{ Model *model = _displayedItems.lastObject; [model removeFromSuperview]; model.tag = 0; [model resetModel]; [_displayedItems removeObject:model];}

嗯,由于這里為了方便,所以添加控件時的位置判斷直接寫死了,所以還有待改進。以上就是用按鈕添加控件這個demo的主要部分,另外還有那個背景圖片的模糊處理使用的是UIVisualEffectView類實現的,在此不詳述了。

代碼不足之處:

1、位置判斷寫死了2、模型其實建一個類就夠了,Item類有點多余

進階方案:

1、通過拖動圖標放置在父視圖任何位置2、點擊控件文字顯示于圖片之上,圖片成為背景并虛化

以上是“iOS如何實現通過按鈕添加和刪除控件”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

ios
AI

商都县| 湘西| 天全县| 肃宁县| 凤翔县| 钟山县| 绩溪县| 米脂县| 普陀区| 若尔盖县| 通州区| 宜兰市| 南平市| 雷州市| 历史| 江都市| 滨海县| 余干县| 北碚区| 阳山县| 沅陵县| 阳春市| 新干县| 新建县| 绥芬河市| 包头市| 土默特右旗| 科尔| 正宁县| 澄迈县| 通州区| 平南县| 桦南县| 手机| 曲松县| 正阳县| 启东市| 安龙县| 宿迁市| 德格县| 阿克陶县|