mirror of
https://github.com/leanote/leanote-ios.git
synced 2025-10-17 16:43:52 +00:00
17 lines
291 B
Objective-C
17 lines
291 B
Objective-C
//
|
|
// CateProtocal.h
|
|
// Leanote
|
|
//
|
|
// Created by life on 15/7/20.
|
|
// Copyright (c) 2015 Leanote.com. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@protocol CategoryProtocol
|
|
|
|
-(CGFloat)getCancelSearchViewHeight; // 正常情况下
|
|
-(CGFloat)getSearchedViewHeight; // 全屏后
|
|
|
|
@end
|