mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
22 lines
475 B
C
22 lines
475 B
C
![]() |
//
|
||
|
// AddSiteAutocompleteCell.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Samuel Clay on 10/12/11.
|
||
|
// Copyright 2011 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@interface AddSiteAutocompleteCell : UITableViewCell {
|
||
|
UILabel *feedTitle;
|
||
|
UILabel *feedUrl;
|
||
|
UILabel *feedSubs;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, retain) IBOutlet UILabel *feedTitle;
|
||
|
@property (nonatomic, retain) IBOutlet UILabel *feedUrl;
|
||
|
@property (nonatomic, retain) IBOutlet UILabel *feedSubs;
|
||
|
|
||
|
@end
|