mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
fixing bug in feed view
This commit is contained in:
parent
a7451be664
commit
5d9f460fc8
2 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,7 @@ static UIFont *indicatorFont = nil;
|
|||
#define rightMargin 18
|
||||
|
||||
|
||||
+ (void) initialize{
|
||||
+ (void) initialize {
|
||||
if (self == [FeedDetailTableCell class]) {
|
||||
textFont = [UIFont boldSystemFontOfSize:18];
|
||||
indicatorFont = [UIFont boldSystemFontOfSize:12];
|
||||
|
|
|
@ -481,7 +481,7 @@
|
|||
- (UITableViewCell *)tableView:(UITableView *)tableView
|
||||
cellForRowAtIndexPath:(NSIndexPath *)indexPath {
|
||||
|
||||
static NSString *cellIdentifier;
|
||||
NSString *cellIdentifier;
|
||||
NSDictionary *feed ;
|
||||
|
||||
if (appDelegate.isRiverView || appDelegate.isSocialView) {
|
||||
|
@ -512,7 +512,7 @@
|
|||
dequeueReusableCellWithIdentifier:cellIdentifier];
|
||||
if (cell == nil) {
|
||||
cell = [[FeedDetailTableCell alloc] initWithStyle:UITableViewCellStyleDefault
|
||||
reuseIdentifier:cellIdentifier];
|
||||
reuseIdentifier:nil];
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue