22 lines
422 B
Objective-C
Executable File
22 lines
422 B
Objective-C
Executable File
//
|
|
// NYSliderPopover.h
|
|
// NYReader
|
|
//
|
|
// Created by Cassius Pacheco on 21/12/12.
|
|
// Copyright (c) 2012 Nyvra Software. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "NYPopover.h"
|
|
|
|
@interface NYSliderPopover : UISlider
|
|
|
|
@property (nonatomic, strong) NYPopover *popover;
|
|
|
|
- (void)showPopover;
|
|
- (void)showPopoverAnimated:(BOOL)animated;
|
|
- (void)hidePopover;
|
|
- (void)hidePopoverAnimated:(BOOL)animated;
|
|
|
|
@end
|