mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
35 lines
654 B
Mathematica
35 lines
654 B
Mathematica
![]() |
//
|
||
|
// AddSiteAutocompleteCell.m
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Samuel Clay on 10/12/11.
|
||
|
// Copyright 2011 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "AddSiteAutocompleteCell.h"
|
||
|
|
||
|
@implementation AddSiteAutocompleteCell
|
||
|
|
||
|
@synthesize feedTitle;
|
||
|
@synthesize feedUrl;
|
||
|
@synthesize feedSubs;
|
||
|
|
||
|
- (id)initWithStyle:(UITableViewCellStyle)style
|
||
|
reuseIdentifier:(NSString *)reuseIdentifier {
|
||
|
if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) {
|
||
|
// Initialization code
|
||
|
}
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
|
||
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
||
|
|
||
|
[super setSelected:selected animated:animated];
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
@end
|