iOS/CloudKitCatalog/CloudKitCatalog/AttributeTableViewCell.swift

/*
    Copyright (C) 2016 Apple Inc. All Rights Reserved.
    See LICENSE.txt for this sample’s licensing information
    
    Abstract:
    An AttributeTableViewCell displays an attribute as a key-value pair.
*/
 
import UIKit
 
class AttributeTableViewCell: UITableViewCell {
    
    // MARK: - Properties
    
    @IBOutlet weak var attributeKey: UILabel!
    @IBOutlet weak var attributeValue: UILabel!
    
}