ULGView.h 503 B

1234567891011121314151617181920212223242526
  1. //
  2. // ULGView.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 2016/12/10.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol NLgDelegate <NSObject>
  10. //通过带count的代理来判断哪种登入
  11. - (void)enterLoginWithCount:(int)count;
  12. @end
  13. @interface ULGView : UIView
  14. @property (nonatomic, weak) id<NLgDelegate>LDelegate;
  15. //初始化
  16. - (id)initWithFrame:(CGRect)frame Array:(NSArray *)array;
  17. //页面的排布
  18. - (void)creatViewWithArray:(NSArray *)array;
  19. @end