NewsBlur/clients/ios/Classes/AddSiteAutocompleteCell.h
2013-06-27 09:43:22 -07:00

23 lines
538 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;
UIImageView *feedFavicon;
}
@property (nonatomic) IBOutlet UILabel *feedTitle;
@property (nonatomic) IBOutlet UILabel *feedUrl;
@property (nonatomic) IBOutlet UILabel *feedSubs;
@property (nonatomic) IBOutlet UIImageView *feedFavicon;
@end