NewsBlur/media/ios/Classes/AddSiteAutocompleteCell.h
2012-07-15 15:06:06 -07:00

21 lines
451 B
Objective-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) IBOutlet UILabel *feedTitle;
@property (nonatomic) IBOutlet UILabel *feedUrl;
@property (nonatomic) IBOutlet UILabel *feedSubs;
@end