覆盖羽声
This commit is contained in:
@@ -278,7 +278,7 @@
|
||||
+ (NSString *)qx_showHotCountNum:(int64_t)count {
|
||||
if (count > 9999 || count < -9999) {
|
||||
// return [NSString stringWithFormat:@"%@w",[self effectiveNum:(double)count/10000.0]];
|
||||
return [NSString stringWithFormat:@"%.1fw",(double)count/10000.0];
|
||||
return [NSString stringWithFormat:@"%.2fw",(double)count/10000.0];
|
||||
}else {
|
||||
return [NSString stringWithFormat:@"%lld",count];
|
||||
}
|
||||
|
||||
@@ -368,6 +368,7 @@
|
||||
hud.bezelView.color = [UIColor blackColor];
|
||||
hud.label.textColor = [UIColor whiteColor];
|
||||
hud.label.text = text;
|
||||
hud.label.numberOfLines = 0;
|
||||
[hud hideAnimated:YES afterDelay:1];
|
||||
}
|
||||
+(void)showMessage:(NSString *)text view:(UIView *)view{
|
||||
@@ -378,6 +379,7 @@
|
||||
hud.bezelView.color = [UIColor blackColor];
|
||||
hud.label.textColor = [UIColor whiteColor];
|
||||
hud.label.text = text;
|
||||
hud.label.numberOfLines = 0;
|
||||
[hud hideAnimated:YES afterDelay:1];
|
||||
}
|
||||
+(void)showLoadingInView:(UIView*)view{
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
}
|
||||
|
||||
-(void)initSubview{
|
||||
self.lengthColor = RGB16(0xFF8ACC);
|
||||
self.lengthColor = QXConfig.themeColor;
|
||||
self.maxLength = 120;
|
||||
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textViewDidChange:) name:UITextViewTextDidChangeNotification object:nil];
|
||||
self.delegate = self;
|
||||
|
||||
Reference in New Issue
Block a user