fixing bug in feed view

This commit is contained in:
Roy Yang 2012-07-22 17:21:32 -07:00
parent a7451be664
commit 5d9f460fc8
2 changed files with 3 additions and 3 deletions

View file

@ -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];

View file

@ -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];
}