NewsBlur/clients/ios/Widget Extension/WidgetTableViewCell.swift
David Sinclair 65c706d3a6 #1162 (widget)
- Added the feed color bars (sharing those colors required a bit of refactoring).
- The fonts etc now more closely match the app.
- Now uses elipsises for the feed name, title, and content text, if needed.
- Improved HTML tag cleanup.
2019-12-23 21:19:45 -08:00

23 lines
664 B
Swift

//
// WidgetTableViewCell.swift
// Widget Extension
//
// Created by David Sinclair on 2019-11-26.
// Copyright © 2019 NewsBlur. All rights reserved.
//
import UIKit
class WidgetTableViewCell: UITableViewCell {
/// The reuse identifier for this table view cell.
static let reuseIdentifier = "WidgetTableViewCell"
@IBOutlet var barView: BarView!
@IBOutlet var feedImageView: UIImageView!
@IBOutlet var feedLabel: UILabel!
@IBOutlet var titleLabel: UILabel!
@IBOutlet var contentLabel: UILabel!
@IBOutlet var authorLabel: UILabel!
@IBOutlet var dateLabel: UILabel!
@IBOutlet var thumbnailImageView: UIImageView!
}