mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-31 20:08:38 +09:00
20 lines
420 B
Objective-C
20 lines
420 B
Objective-C
//
|
|
// UMTableViewCell.h
|
|
// SWTableViewCell
|
|
//
|
|
// Created by Matt Bowman on 12/2/13.
|
|
// Copyright (c) 2013 Chris Wendel. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SWTableViewCell.h"
|
|
|
|
/*
|
|
* Example of a custom cell built in Storyboard
|
|
*/
|
|
@interface UMTableViewCell : SWTableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *image;
|
|
@property (weak, nonatomic) IBOutlet UILabel *label;
|
|
|
|
@end
|