mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
17 lines
377 B
Swift
17 lines
377 B
Swift
![]() |
//
|
||
|
// ShareCommentCell.swift
|
||
|
// Share Extension
|
||
|
//
|
||
|
// Created by David Sinclair on 2021-07-18.
|
||
|
// Copyright © 2021 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
class ShareCommentCell: UITableViewCell {
|
||
|
@IBOutlet weak var commentTextView: UITextView!
|
||
|
|
||
|
/// The reuse identifier for this table view cell.
|
||
|
static let reuseIdentifier = "ShareCommentCell"
|
||
|
}
|