亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

輕松使用富文本

發布時間: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

张家界市| 广河县| 周宁县| 金山区| 大同市| 霍城县| 海宁市| 绥化市| 永仁县| 汤原县| 诸暨市| 盐亭县| 墨江| 海宁市| 京山县| 乐昌市| 桐梓县| 陇南市| 陇西县| 岳普湖县| 嘉兴市| 南京市| 辽中县| 双鸭山市| 青岛市| 林口县| 寻甸| 清涧县| 临桂县| 原阳县| 井陉县| 中西区| 周口市| 大厂| 沙洋县| 通州区| 海南省| 莫力| 民县| 克拉玛依市| 新田县|