mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-22 23:42:50 +08:00
* Upload icon consistent with rest of bar * Assign and request events use attributed text with linebreaks * size cell to content
21 lines
363 B
Swift
21 lines
363 B
Swift
//
|
|
// IssueRequestCell.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 7/12/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import SnapKit
|
|
|
|
final class IssueRequestCell: AttributedStringCell {
|
|
|
|
// MARK: Public API
|
|
|
|
func configure(_ model: IssueRequestModel) {
|
|
set(attributedText: model.attributedText)
|
|
}
|
|
|
|
}
|