mirror of
https://github.com/TermiT/Flycut.git
synced 2025-10-08 04:46:56 +08:00
18 lines
318 B
Objective-C
18 lines
318 B
Objective-C
//
|
|
// CustomViewCell.h
|
|
// InAppSettingsKitSampleApp
|
|
//
|
|
// Created by Ortwin Gentz on 05.11.10.
|
|
// Copyright 2010 FutureTap. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
@interface CustomViewCell : UITableViewCell {
|
|
UITextView *textView;
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet UITextView *textView;
|
|
|
|
@end
|