Files
peko-ios/YuMi/Modules/YMRoom/View/SendRedPacket/PIRoomSendRedPacketVC.m
2023-10-19 15:06:34 +08:00

44 lines
1.0 KiB
Objective-C

//
// PIRoomSendRedPacketVC.m
// YuMi
//
// Created by duoban on 2023/10/18.
//
#import "PIRoomSendRedPacketVC.h"
@interface PIRoomSendRedPacketVC ()
@property(nonatomic,strong) UIView *bgView;
@property(nonatomic,strong) UIImageView *topImageView;
@property(nonatomic,strong) UIButton *tipsBtn;
@end
@implementation PIRoomSendRedPacketVC
- (void)viewDidLoad {
[super viewDidLoad];
[self installUI];
[self installConstraints];
}
-(void)installUI{
self.view.backgroundColor = [UIColor clearColor];
self.navigationController.view.backgroundColor = [UIColor clearColor];
[self.navigationController setNavigationBarHidden:YES];
}
-(void)installConstraints{
}
#pragma mark - 懒加载
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/
@end