NewsBlur/clients/ios/Classes/FolderTitleView.h
David Sinclair c9e02c600b iOS: done #816 (replacing action sheets)
Only the older/newer long-press one; still have the story image one,
but I think that’s okay as-is since it has a title/alt text display.
Also removed some redundant code.
2015-11-29 18:08:44 -08:00

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