mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
16 lines
371 B
Swift
16 lines
371 B
Swift
//
|
|
// ShareSaveNewCell.swift
|
|
// Share Extension
|
|
//
|
|
// Created by David Sinclair on 2021-07-18.
|
|
// Copyright © 2021 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class ShareSaveNewCell: UITableViewCell {
|
|
@IBOutlet weak var tagField: UITextField!
|
|
|
|
/// The reuse identifier for this table view cell.
|
|
static let reuseIdentifier = "ShareSaveNewCell"
|
|
}
|