|
//
// fontSizeSlideCell.h
// ThePaperDemo
//
// Created by Scar on 14-9-11.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol fontSizeSelectDelegate <NSObject>
- (void)didFinishSelectFont;
@end
@interface fontSizeSlideCell : UIView
@property(nonatomic, assign)CGFloat fontSize;
@property(nonatomic, weak)id<fontSizeSelectDelegate> delegate;
@end
|