mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
24 lines
441 B
C
24 lines
441 B
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"
|
||
|
|
||
|
|
||
|
@class NewsBlurAppDelegate;
|
||
|
|
||
|
@interface FolderTitleView : UIControl {
|
||
|
NewsBlurAppDelegate *appDelegate;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
|
||
|
|
||
|
- (UIControl *)drawWithRect:(CGRect)rect inSection:(NSInteger)section;
|
||
|
|
||
|
@end
|