12345678910111213141516171819202122 |
- //
- // KXLittleLogginView.h
- // CAISHEN
- //
- // Created by kuxuan on 2017/8/28.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol KXLittleLogginViewDelegate <NSObject>
- - (void)littleLogginViewSuccess;
- @end
- @interface KXLittleLogginView : UIView<UITextFieldDelegate>
- @property (nonatomic,assign)id<KXLittleLogginViewDelegate>delegate;
- @end
|