JXTipBlackView.h 277 B

123456789101112131415161718
  1. //
  2. // TipBlackView.h
  3. // shiku_im
  4. //
  5. // Created by MacZ on 16/4/18.
  6. // Copyright (c) 2016年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface JXTipBlackView : UIView{
  10. UILabel *_titleLabel;
  11. }
  12. - (id)initWithTitle:(NSString *)title;
  13. - (void)show;
  14. @end