Files
yuyin_ios/SweetParty/主类/Mine/Wallet/SPWalletBoneVC.m
2025-08-08 11:05:33 +08:00

36 lines
713 B
Objective-C
Executable File

//
// SPWalletBoneVC.m
// SweetParty
//
// Created by bj_szd on 2022/6/10.
//
#import "SPWalletBoneVC.h"
@interface SPWalletBoneVC ()
@property (weak, nonatomic) IBOutlet UIView *balanceBgV;
@property (weak, nonatomic) IBOutlet UILabel *balanceLab;
@end
@implementation SPWalletBoneVC
- (void)viewDidLoad {
[super viewDidLoad];
[self createUI];
}
- (void)createUI {
self.balanceBgV.backgroundColor = [UIColor bm_colorGradientChangeWithSize:CGSizeMake(ScreenWidth-14*2, 130) direction:FXGradientChangeDirectionHorizontal startColor:HEXCOLOR(0xE5AF21) endColor:HEXCOLOR(0xF88426)];
}
#pragma mark - JXCategoryListContentViewDelegate
- (UIView *)listView {
return self.view;
}
@end