JXApplyViewController.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // JXApplyViewController.h
  3. // shiku_im
  4. //
  5. // Created by qiudezheng on 2020/4/28.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import "JXTableViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface JXApplyViewController : JXTableViewController
  11. @property (nonatomic,copy) NSString *coinStringS;
  12. @property (nonatomic,strong) NSDictionary *dictStatus;
  13. @end
  14. NS_ASSUME_NONNULL_END
  15. /**
  16. long time = (long)[[NSDate date] timeIntervalSince1970];
  17. time = (time *1000 + g_server.timeDifference);
  18. NSString *salt = [NSString stringWithFormat:@"%ld", time];
  19. [g_server act_UserfuwenBenLogin:salt type:@"meirifuli" title:@"用户协议" andToView:self];
  20. UITextView * textView = [[UITextView alloc]initWithFrame:CGRectMake(0,64, JX_SCREEN_WIDTH-130,0.62*JX_SCREEN_WIDTH-100)];
  21. textView.backgroundColor=[UIColor clearColor];
  22. textView.showsVerticalScrollIndicator=NO;
  23. textView.textColor=kRGBColor(236, 207, 156);
  24. textView.text=@"活动规则:1.该活动为即信用户专享活动 2.该活动完成后获得相应数量的“金信币” 即信币为永久道具永不注销可以提现为彩金 3.该活动解释权为吉利彩票所以改活动解释权归吉利彩票所以";
  25. [backImageView addSubview:textView];
  26. self.textView=textView;
  27. */