mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
21 lines
427 B
Objective-C
21 lines
427 B
Objective-C
//
|
|
// FeedChooserTitleView.h
|
|
// NewsBlur
|
|
//
|
|
// Created by David Sinclair on 2016-01-22.
|
|
// Copyright © 2016 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
@protocol FeedChooserTitleDelegate <NSObject>
|
|
|
|
- (void)didSelectTitleView:(UIButton *)sender;
|
|
|
|
@end
|
|
|
|
@interface FeedChooserTitleView : UIView
|
|
|
|
@property (nonatomic) NSUInteger section;
|
|
@property (nonatomic, strong) NSString *title;
|
|
@property (nonatomic, weak) id delegate;
|
|
|
|
@end
|