2012-10-02 15:39:18 -07:00
|
|
|
//
|
|
|
|
// 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"
|
2012-10-12 15:33:40 -04:00
|
|
|
#import "UnreadCountView.h"
|
2012-10-02 15:39:18 -07:00
|
|
|
|
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
2013-10-09 15:41:17 -07:00
|
|
|
@interface FolderTitleView : UIView
|
2015-11-29 18:08:44 -08:00
|
|
|
<UIGestureRecognizerDelegate> {
|
2012-10-02 15:39:18 -07:00
|
|
|
NewsBlurAppDelegate *appDelegate;
|
2014-09-26 18:35:40 -07:00
|
|
|
UIFontDescriptor *fontDescriptorSize;
|
2012-10-02 15:39:18 -07:00
|
|
|
}
|
|
|
|
|
2012-10-04 15:44:25 -07:00
|
|
|
@property (assign, nonatomic) int section;
|
2012-10-02 15:39:18 -07:00
|
|
|
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
|
2012-10-12 15:33:40 -04:00
|
|
|
@property (nonatomic) UnreadCountView *unreadCount;
|
2013-10-09 15:41:17 -07:00
|
|
|
@property (nonatomic) UIButton *invisibleHeaderButton;
|
|
|
|
|
|
|
|
- (void)handleLongPress:(UILongPressGestureRecognizer *)gestureRecognizer;
|
2012-10-02 15:39:18 -07:00
|
|
|
|
|
|
|
@end
|