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