mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00

* offline: (247 commits) Adding preferences for offline story limit and image download concurrency. Better next unread button min width in narrow mode. Fixing tooltip on Full view. Speeding up new user queue. Adding starred stories to munin. Showing empty explainers. Cleaning up starred story trimmer. New starred story trimmer. Turning off SSL verification on text importing. Using latest feedparser. Adding Xcode5-specific directories to gitignore. Fixing crash on iOS 7 for offline stories. Still looks like shit. Bumping feed blast limit from 50 to 100 stories at a time. Need to pass story order and read filter to sync service when refresh triggered in AllSharedStoriesReading activity Fixing autocomplete to not choke on missing feeds. Fix #351 - support oldest first/unread for viewing all shared stories and individual blurblogs Fixing spacebar and arrow keys for new scroll story list. Normaling user agents between feed/page/icon fetchers. Adding full site permalink. Fixing text view. Fixing esc key to close popovers and menus without closing current feed. ... Conflicts: clients/ios/NSAttributedString+Attributes.h clients/ios/NSAttributedString+Attributes.m clients/ios/OHAttributedLabel.h clients/ios/OHAttributedLabel.m
32 lines
830 B
Objective-C
32 lines
830 B
Objective-C
//
|
|
// ActivityCell.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Roy Yang on 7/13/12.
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ActivityCell : UITableViewCell {
|
|
UILabel *activityLabel;
|
|
UIImageView *faviconView;
|
|
int topMargin;
|
|
int bottomMargin;
|
|
int leftMargin;
|
|
int rightMargin;
|
|
int avatarSize;
|
|
}
|
|
|
|
@property (nonatomic, strong) UILabel *activityLabel;
|
|
@property (nonatomic, strong) UIImageView *faviconView;
|
|
@property (readwrite) int topMargin;
|
|
@property (readwrite) int bottomMargin;
|
|
@property (readwrite) int leftMargin;
|
|
@property (readwrite) int rightMargin;
|
|
@property (readwrite) int avatarSize;
|
|
|
|
- (int)setActivity:(NSDictionary *)activity withUserProfile:(NSDictionary *)userProfile withWidth:(int)width;
|
|
- (NSString *)stripFormatting:(NSString *)str;
|
|
|
|
@end
|