LGLTagsView

来源:http://www.cnblogs.com/ljmaque/archive/2016/10/29/LGLTagsView.html
-Advertisement-
Play Games

做項目的時候經常會用到標簽,比如說現在很多項目中搜索歷史用標簽展示 和 選擇某個產品的不同屬性用標簽展示...。網上的有很多封裝好的標簽,但是作為一個上進的程式員,都希望能有一個自己寫的。其實也是一種積累知識的過程。現在的這個標簽是根據你的標簽的搜字母來排序的。先來看下效果: 下麵的是代碼說明和代碼 ...


做項目的時候經常會用到標簽,比如說現在很多項目中搜索歷史用標簽展示 和 選擇某個產品的不同屬性用標簽展示...。網上的有很多封裝好的標簽,但是作為一個上進的程式員,都希望能有一個自己寫的。其實也是一種積累知識的過程。現在的這個標簽是根據你的標簽的搜字母來排序的。先來看下效果:

 

下麵的是代碼說明和代碼:

(1)包括兩個部分:LGLTagsFrame(計算標簽的frame)  LGLTagsView(標簽的展示的view)

(2)使用註意:請先把標簽數組輸入LGLTagsFrame計算出標簽的總高度 再來利用創建LGLTagsView。

LGLTagsFrame.h

展開
//  Created by 李國良 on 2016/10/15.
//  Copyright © 2016年 李國良. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

@interface LGLTagsFrame : NSObject

/*
 *  @params tagsArray 標簽名稱數組
 */
@property (nonatomic, strong) NSArray * tagsArray;

/*
 *  @params tagsTotalHeight 標簽的總高度
 */
@property (nonatomic, assign) CGFloat tagsTotalHeight;

/*
 *  @params tagsFrames 每個標簽的frame數組
 */
@property (nonatomic, strong) NSMutableArray *tagsFrames;

/*
 *  @params tagsMargin 標簽左右之間的間隔 預設是10  (請在給tagsArray賦值之前設置)
 */
@property (nonatomic, assign) CGFloat tagsMargin;

/*
 *  @params tagdPadding 標簽上下之間的間隔 預設是10 (請在給tagsArray賦值之前設置)
 */
@property (nonatomic, assign) CGFloat tagsLineMargin;

/*
 *  @params tagdPadding 標簽內部的上下左右的間隔 (預設是10) (請在給tagsArray賦值之前設置)
 */
@property (nonatomic, assign) CGFloat tagdPadding;

@end

LGLTagsFrame.m

//  Created by 李國良 on 2016/10/15.
//  Copyright © 2016年 李國良. All rights reserved.
//

#import "LGLTagsFrame.h"
#define WIDTH  ([UIScreen mainScreen].bounds.size.width)
#define HEIGHT  ([UIScreen mainScreen].bounds.size.height)

@interface LGLTagsFrame ()

@property (nonatomic, strong) UIButton * startButton;

@end

@implementation LGLTagsFrame

- (instancetype)init {
    self = [super init];
    if (self) {
        self.tagsFrames = [NSMutableArray array];
        self.tagsMargin = 10;
        self.tagsLineMargin = 10;
        self.tagdPadding = 10;
    }
    return self;
}

- (void)setTagsArray:(NSArray *)tagsArray {
    _tagsArray = tagsArray;
    // 去掉重覆的title
    NSSet * set = [NSSet setWithArray:tagsArray];
    NSArray * titleArray = [set  allObjects];
    NSArray *sortDesc = @[[[NSSortDescriptor alloc] initWithKey:nil ascending:YES]];
    NSArray *sort1Array = [titleArray sortedArrayUsingDescriptors:sortDesc];
    CGFloat tagsWidth = 0;
    CGFloat tagY = 10;
    NSMutableArray * frameA = [NSMutableArray array];
    for (NSString * title in sort1Array) {                     //計算出每個標題的Size
        CGSize titleSize = [self sizeWithText:title font:[UIFont systemFontOfSize:14] maxW:0];
        [frameA addObject:NSStringFromCGSize(titleSize)];
    }
    for (NSInteger i = 0; i < frameA.count; i ++) {
        CGSize size = CGSizeFromString(frameA[i]);
        CGFloat width = size.width + self.tagdPadding;
        CGFloat height = size.height + self.tagdPadding;
        if ((WIDTH - tagsWidth - self.tagsMargin) < (width)) {
            tagY = tagY + height + self.tagsLineMargin;
            tagsWidth = 0;
        }
        UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
        btn.frame = CGRectMake(self.tagsMargin + tagsWidth, tagY, width, height);
        [btn setTitle:sort1Array[i] forState:UIControlStateNormal];
        [btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        [btn setTitleColor:[UIColor whiteColor] forState:UIControlStateSelected];
        btn.titleLabel.font = [UIFont systemFontOfSize:14];
        btn.layer.masksToBounds = YES;
        btn.layer.cornerRadius = 5;
        btn.layer.borderWidth = 1;
        btn.layer.borderColor = [UIColor blackColor].CGColor;
        [self.tagsFrames addObject:btn];
        tagsWidth = CGRectGetMaxX(btn.frame);
        if (i == frameA.count - 1) {
            self.tagsTotalHeight = CGRectGetMaxY(btn.frame) + self.tagsLineMargin;
        }
    }
}

//計算文字的大小 maxW限制最大寬度 maxW 傳MAXFLOAT,沒有限制最大的寬度
- (CGSize)sizeWithText:(NSString *)text font:(UIFont *)font maxW:(CGFloat)maxW
{
    NSMutableDictionary *attrs = [NSMutableDictionary dictionary];
    attrs[NSFontAttributeName] = font;
    CGSize maxSize = CGSizeMake(maxW, MAXFLOAT);
    
    return [text boundingRectWithSize:maxSize options:NSStringDrawingUsesLineFragmentOrigin attributes:attrs context:nil].size;
}

- (void)setTagsMargin:(CGFloat)tagsMargin {
    _tagsMargin = tagsMargin;
}

- (void)setTagsLineMargin:(CGFloat)tagsLineMargin {
    _tagsLineMargin = tagsLineMargin;
}

- (void)setTagdPadding:(CGFloat)tagdPadding {
    _tagdPadding = tagdPadding;
}

@end
展開

 

LGLTagsView.h

//  Created by 李國良 on 2016/10/17.
//  Copyright © 2016年 李國良. All rights reserved.
//

#import <UIKit/UIKit.h>

typedef void(^TagSelectBlock)(NSString * tagName);

@interface LGLTagsView : UIView

/**
 *  @params frame 高度請傳 LGLTagsFrame的  tagsTotalHeight
 *  @params tagsFrame 請傳 LGLTagsFrame 的 tagsFrames
 */
- (instancetype)initWithFrame:(CGRect)frame tagsFrame:(NSMutableArray *)tagsFrame selectTagBlock:(TagSelectBlock)block;

/*
 *  @params isSelected 是是否要有選中的效果 預設有選中的效果
 */
@property (nonatomic, assign) BOOL isSelected;

/*
 *  @params tagsSelectedColor 是修改選中tag的背景色顏色(預設 orange) 在沒有選中效果的時候設置無效
 */
@property (nonatomic, strong) UIColor * tagsSelectedColor;

@end
展開

 

LGLTagsView.m

//  Created by 李國良 on 2016/10/17.
//  Copyright © 2016年 李國良. All rights reserved.
//

#import "LGLTagsView.h"
@interface LGLTagsView ()

@property (nonatomic, strong) NSMutableArray * tagsFrame;
@property (nonatomic, strong) UIButton * startButton;
@property (nonatomic, copy) TagSelectBlock block;

@end

@implementation LGLTagsView

- (instancetype)initWithFrame:(CGRect)frame tagsFrame:(NSMutableArray *)tagsFrame selectTagBlock:(TagSelectBlock)block {
    self = [super initWithFrame:frame];
    if (self) {
        self.tagsFrame = tagsFrame;
        self.isSelected = YES;
        self.tagsSelectedColor = [UIColor orangeColor];
        self.block = block;
        [self createTagsView];
    }
    return self;
}

- (void)createTagsView {
    for (UIButton * tags in self.tagsFrame) {
        [tags addTarget:self action:@selector(tagsClink:) forControlEvents:UIControlEventTouchUpInside];
        [self addSubview:tags];
    }
}

- (void)tagsClink:(UIButton *)button {
    if (self.isSelected) {
        if(button !=self.startButton){
            self.startButton.selected = NO;
            [self.startButton setBackgroundColor:[UIColor whiteColor]];
            self.startButton.layer.borderColor = [UIColor blackColor].CGColor;
            self.startButton = button;
        }
        self.startButton.selected=YES;
        if (self.startButton.selected) {
            [self.startButton setBackgroundColor:self.tagsSelectedColor];
            self.startButton.layer.borderColor = [UIColor whiteColor].CGColor;
        }
    }
    self.block(button.titleLabel.text);
}

- (void)setIsSelected:(BOOL)isSelected {
    _isSelected = isSelected;
}

- (void)setTagsSelectedColor:(UIColor *)tagsSelectedColor {
    _tagsSelectedColor = tagsSelectedColor;
}


- (NSMutableArray *)tagsFrame {
    if (!_tagsFrame ) {
        _tagsFrame = [NSMutableArray array];
    }
    return _tagsFrame;
}
@end
展開

文件到此結束

下麵說明一下具體使用的方法:

 LGLTagsFrame * frame = [[LGLTagsFrame alloc] init];
    frame.tagsArray = [dataSource copy];
    LGLTagsView  * tagView = [[LGLTagsView alloc] initWithFrame:CGRectMake(0, 0, WIDTH, frame.tagsTotalHeight) tagsFrame:frame.tagsFrames selectTagBlock:^(NSString *tagName) {
        // 在這裡獲得標簽的點擊回調的值
        }
    }];
[self.view addSubview:tagView];

有修改意見的歡迎來騷擾!

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一. 準備工作 1. 點擊此下載 相關的文件 二. 瀏覽器中運行 play-img.html 文件,即可顯示效果 三. 效果圖 ...
  • 通過jquery可以很容易實現CP端的拖拽。但是在移動端卻不好用了。於是我自己寫了一個在移動端的拖拽demo,主要用到的事件是觸摸事件(touchstart,touchmove和touchend)。 這個demo實現的功能是:可以拖拽的元素(在這裡是圖片)位於列表中,這些元素可以被拖到指定區域,到達 ...
  • 1.水平居中設置 行內元素居中設置:如果被設置元素為文本、圖片等行內元素時,水平居中是通過給父元素設置 text-align:center 來實現的。代碼示例如下: 定寬塊狀元素居中設置:滿足定寬和塊狀兩個條件的元素是可以通過設置“左右margin”值為“auto”來實現居中的。代碼示例如下: 不定 ...
  • 1. 合理使用title, description, keywords2. 合理使用h1 - h6, h1標簽的權重很高, 註意使用頻率3. 列表代碼使用ul, 重要文字使用strong標簽4. 圖片添加alt屬性, title可選。 img最好加上寬, 高利於載入5. 重要代碼在前面, 通過css ...
  • 使用jQuery動畫時,當快速操作時,讓動畫效果與滑鼠的動作保持一致 ...
  • META相關 1. 添加到主屏後的標題(IOS) 2. 啟用 WebApp 全屏模式(IOS) 當網站添加到主屏幕後再點擊進行啟動時,可隱藏地址欄(從瀏覽器跳轉或輸入鏈接進入並沒有此效果) 3. 百度禁止轉碼 通過百度手機打開網頁時,百度可能會對你的網頁進行轉碼,往你頁面貼上它的廣告,非常之噁心。不 ...
  • if ( Object.prototype.toString.call(d) "[object Date]" ) { // it is a date if ( isNaN( d.getTime() ) ) { // d.valueOf() could also work // date is not ...
  • 如果您的 iPhone 應用里有個 view,既有單擊操作又有雙擊操作。用戶雙擊 view 時,總是先執行一遍單擊的操作再執行雙擊的操作。所以直接判斷時就會發現不能直接進入雙擊操作。下麵是區分 touch 事件是單擊還是雙擊的方法 -(void)singleTap{ NSLog(@"Tap 1 ti ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...