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

- It was always that way, but keeping the selection would be nicer, so now it does. - Not as trivial a thing as it may seem, due to the way the headers work.
29 lines
692 B
Objective-C
29 lines
692 B
Objective-C
//
|
|
// FolderTitleView.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Samuel Clay on 10/2/12.
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "NewsBlurAppDelegate.h"
|
|
#import "UnreadCountView.h"
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
@interface FolderTitleView : UIView
|
|
<UIGestureRecognizerDelegate> {
|
|
NewsBlurAppDelegate *appDelegate;
|
|
UIFontDescriptor *fontDescriptorSize;
|
|
}
|
|
|
|
@property (assign, nonatomic) int section;
|
|
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
|
|
@property (nonatomic) UnreadCountView *unreadCount;
|
|
@property (nonatomic) UIButton *invisibleHeaderButton;
|
|
|
|
- (void)handleLongPress:(UILongPressGestureRecognizer *)gestureRecognizer;
|
|
|
|
@end
|