iOS 自適應高度,改變字體顏色

来源:https://www.cnblogs.com/xujinzhong/archive/2018/03/06/8514645.html
-Advertisement-
Play Games

#define kMainBoundsWidth ([UIScreen mainScreen].bounds).size.width //屏幕的寬度 #define kFont [UIFont systemFontOfSize:17.f] //字體大小 #define kLineSpacing 7 ... ...


 

 

#define kMainBoundsWidth    ([UIScreen mainScreen].bounds).size.width //屏幕的寬度
#define kFont               [UIFont systemFontOfSize:17.f] //字體大小
#define kLineSpacing        7 //行間距
- (void)viewDidLoad {
    [super viewDidLoad];
    
    //將view背景顏色變更為黃色
    self.view.backgroundColor = [UIColor grayColor];

    self.textView.text = @"I got a question regarding objc blocks. If you want to use self in a block you should weakify it and strongify it again in the block so you don't get into a retain cycle.";//文字內容
    self.textField.text = @"regarding";//高亮內容
    self.lableContent.text = self.textView.text;//顯示內容
    
    @weakify(self);
    [self.textView.rac_textSignal subscribeNext:^(NSString * _Nullable x) {
        @strongify(self);
        self.lableContent.text = x;
        [self layoutLableContent:self.textField.text content:x];
    }];
    
    //高亮文字
    [self.textField.rac_textSignal subscribeNext:^(NSString * _Nullable x) {
        [self layoutLableContent:self.textField.text content:self.lableContent.text];
    }];
}

/** 文字內容 */
-(UITextView *)textView{
    if (!_textView) {
        _textView = [[UITextView alloc] init];
        _textView.font = [UIFont systemFontOfSize:15.f];
        _textView.showsHorizontalScrollIndicator = YES;
        _textView.layer.cornerRadius = 4.f;
        _textView.layer.masksToBounds = YES;
        [self.view addSubview:_textView];
        
        [_textView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(self.view).offset(80);
            make.centerX.equalTo(self.view);
            make.width.equalTo(self.view).multipliedBy(0.8);
            make.height.offset(100);
        }];
    }
    return _textView;
}

/** 高亮文字 */
-(UITextField *)textField{
    if (!_textField) {
        _textField = [UITextField new];
        _textField.placeholder = @"請輸入高亮文字";
        _textField.layer.cornerRadius = 4.f;
        _textField.layer.masksToBounds = YES;
        _textField.textAlignment = NSTextAlignmentCenter;
        _textField.backgroundColor = [UIColor whiteColor];
        _textField.keyboardType = UITextAutocorrectionTypeNo;
        [self.view addSubview:_textField];
        
        [_textField mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(_textView.mas_bottom).offset(30);
            make.centerX.equalTo(self.view);
            make.width.equalTo(self.view).multipliedBy(0.5);
            make.height.offset(50);
        }];
    }
    return _textField;
}

/** 目標文字 */
-(UILabel *)lableContent{
    if (!_lableContent) {
        _lableContent = [UILabel new];
        _lableContent.font = kFont;
        _lableContent.layer.cornerRadius = 4.f;
        _lableContent.layer.masksToBounds = YES;
        _lableContent.layer.borderColor = [UIColor yellowColor].CGColor;
        _lableContent.layer.borderWidth = 1.f;
        _lableContent.backgroundColor = [UIColor whiteColor];
        _lableContent.numberOfLines = 0;
        [self.view addSubview:_lableContent];
        
        [_lableContent mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(_textField.mas_bottom).offset(50);
            make.centerX.equalTo(self.view);
            make.width.offset(kMainBoundsWidth-40);
            make.height.offset(200);
        }];
    }
    return _lableContent;
}

/** 更新數據 */
-(void)layoutLableContent:(NSString *)keyWord content:(NSString *)content{
    CGFloat width = kMainBoundsWidth-40;
    CGSize contentSize = [self adaptContentStringSizeWithFont:kFont withWidth:width content:content];
    CGSize size = CGSizeMake(width, contentSize.height+25);
    
    [self.lableContent mas_updateConstraints:^(MASConstraintMaker *make) {
        make.height.offset(size.height);
    }];
    //必須調用此方法,才能出動畫效果
    [self.view layoutIfNeeded];
    
    NSMutableAttributedString *attributedStrContent = [[NSMutableAttributedString alloc]initWithString:self.lableContent.text];
    NSMutableParagraphStyle * paragraphStyle = [[NSMutableParagraphStyle alloc] init];
    paragraphStyle.lineSpacing = kLineSpacing;
    [attributedStrContent addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [attributedStrContent length])];
    [self addAttributeColorOfSubString:keyWord inString:content tatgetString:attributedStrContent];
    self.lableContent.attributedText = attributedStrContent;
}

/** 在指定字元串的顏色屬性 */
- (void)addAttributeColorOfSubString:(NSString*)subStr inString:(NSString*)content tatgetString:(NSMutableAttributedString*)attributedString {
    NSString*string1 = [content stringByAppendingString:subStr];
    NSString *temp;
    bool iscnChar = NO;
    int cnIndex = 0;
    for(int i =0; i < content.length; i++) {
        temp = [string1 substringWithRange:NSMakeRange(i, subStr.length)];
        if ([temp isEqualToString:subStr]) {
            NSRange range = {i,subStr.length};
            [attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:range];
            [attributedString addAttribute:NSFontAttributeName value:kFont range:range];
        }
        
        unichar c = [string1 characterAtIndex:i];
        if (c >=0x4E00 && c <=0x9FA5){
            cnIndex = i;
            iscnChar = YES;
            NSRange range = {i, 1};
            [attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:range];
        }
    }
}

- (CGSize)adaptContentStringSizeWithFont:(UIFont*)font withWidth:(CGFloat)width content:(NSString *)content
{
    //行間距
    NSMutableParagraphStyle * paragraphStyle = [[NSMutableParagraphStyle alloc] init];
    paragraphStyle.lineSpacing = kLineSpacing;
    
    NSDictionary *attributes = @{
                                 NSFontAttributeName:font,
                                 NSParagraphStyleAttributeName:paragraphStyle
                                 };
    CGSize contentSize = [content boundingRectWithSize:CGSizeMake(width, MAXFLOAT)
                                               options:NSStringDrawingUsesLineFragmentOrigin
                                            attributes:attributes
                                               context:nil].size;
    return contentSize;
}

//取消鍵盤
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    [self.textView resignFirstResponder];
    [self.textField resignFirstResponder];
    [self.lableContent resignFirstResponder];
}

 


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

-Advertisement-
Play Games
更多相關文章
  • 相同點 都是基於記憶體的數據存儲系統redis 和 memcached 的區別 1.1redis 支持 豐富的數據類型 string hash list set 有序集合 1.2.memcached 只支持 string 2.1 redis支持持久化操作 RDB快照 Redis支持將當前數據的快照存成 ...
  • 環境描述: 操作系統版本:CentOS release 6.5 (Final) phoenix版本:phoenix-4.10.0 hbase版本:hbase-1.2.6 現象描述: 通過phoenix客戶端連接hbase資料庫時,無法正常連接,報下麵的信息: [aiprd@host-10-191-5 ...
  • 開啟用戶管理auth = true在配置文件或者參數中設置為改選項 開啟認證服務,註意一點,很多人說在沒有設置用戶和配置用戶之前,應該先不要開啟,等設置完用戶後再開啟該參數,目前在win2008 x64 下,直接開啟該參數,第一次安裝的一個資料庫服務,可以正常添加用戶創建用戶db.createUse... ...
  • iOS開發者計劃是按年付費的,在過期前60天可以開始續費。如果你不續費的話,你將無法發佈應用。另外蘋果會吊銷你的開發者證書和發佈證書。最後,蘋果將你在iTunes App Store上的所有應用下架。 Ad hoc渠道發行允許你繞過App Store直接將應用發放給你的用戶。但是分發數量會限制在10 ...
  • 1 解決方案一 此處解決辦法參照自網友文章,對於輸入的地址信息要求:城市名+具體地址名。 如果輸入的地址信息只有具體地址名,而沒有城市名,可能解析不出經緯度信息。還有就是解析出的經緯度再反向解析顯示再地圖上作為一個地標標記時,會有較明顯的偏差,偏差的實際地理距離大概有一千米左右...,這是樓主自己實 ...
  • 因為Object-C是不支持多繼承的,所以很多時候都是用Protocol(協議)來代替。Protocol(協議)只能定義公用的一套介面,但不能提供具體的實現方法。也就是說,它只告訴你要做什麼,但具體怎麼做,它不關心。 當一個類要使用某一個Protocol(協議)時,都必須要遵守協議。比如有些必要實現 ...
  • One of the most important concepts in object-oriented programming is that of inheritance. Inheritance allows us to define a class in terms of another ...
  • 項目地址https://github.com/979451341/OrcTest我們說說實現這個項目已實現的功能,能夠截圖手機界面的某一塊,將這個某一塊圖片的Bitmap傳給tess-two的代碼來獲取掃描結果我這裡在貼出tess-two這個專為Android而創建的文字識別框架的地址https:/ ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...