中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

輕松使用富文本

發布時間:2020-06-22 23:40:27 來源:網絡 閱讀:347 作者:xinji0702 欄目:開發技術

最后發現需要6.0以后,因為nsfontattributename之類的是6.0以后的api

    長久以來,我以為富文本是一種在ios中使用特別麻煩的事情,但是不經意的研究發現,其實并沒有那么難!

   以下的代碼實現了uilabel中放置富文本。


NSMutableAttributedString *richTask = [[NSMutableAttributedString alloc] initWithString:task];
    NSDictionary *urgentAttributes = @{NSFontAttributeName : [UIFont fontWithName:@"Courier" size:24],
                                       NSStrokeWidthAttributeName : @3.0,NSStrokeColorAttributeName:[UIColor greenColor]};
    [richTask setAttributes:urgentAttributes range:urgentRange];





- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
                                                                   
    NSString *identifier = nil;
    NSString *task = [self.tasks objectAtIndex:indexPath.row];
    NSRange urgentRange = [task rangeOfString:@"URGENT"];
    if (urgentRange.location == NSNotFound) {
        identifier = @"plainCell";
    } else {
        identifier = @"attentionCell";
    }
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
                                                                   
    // Configure the cell...
                                                                   
    UILabel *cellLabel = (UILabel *)[cell viewWithTag:1];
    NSMutableAttributedString *richTask = [[NSMutableAttributedString alloc] initWithString:task];
    NSDictionary *urgentAttributes = @{NSFontAttributeName : [UIFont fontWithName:@"Courier" size:24],
                                       NSStrokeWidthAttributeName : @3.0,NSStrokeColorAttributeName:[UIColor greenColor]};
    [richTask setAttributes:urgentAttributes range:urgentRange];
    if (urgentRange.location != NSNotFound) {
        NSRange otherPartRange = NSMakeRange(urgentRange.length+urgentRange.location, task.length-urgentRange.length);
        NSDictionary* otherPartAttributes = @{NSFontAttributeName : [UIFont fontWithName:@"Courier" size:12],
                                              NSStrokeWidthAttributeName : @0,NSStrokeColorAttributeName:[UIColor redColor]};
        [richTask setAttributes:otherPartAttributes range:otherPartRange];
    }
                                                                   
    cellLabel.attributedText = richTask;
                                                                   
    return cell;
}
向AI問一下細節

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

AI

宜宾市| 德钦县| 景东| 客服| 沙坪坝区| 云阳县| 德庆县| 海兴县| 乐陵市| 涞源县| 章丘市| 漾濞| 白山市| 盐津县| 潼关县| 黑山县| 许昌市| 内黄县| 巫山县| 丹棱县| 巴南区| 十堰市| 芜湖县| 西乌珠穆沁旗| 延长县| 独山县| 监利县| 万荣县| 密山市| 观塘区| 会同县| 龙江县| 伊宁县| 平乐县| 都安| 韶关市| 凌海市| 龙门县| 阿拉善盟| 澄迈县| 平阳县|