开发者

UITableView Transparent BackGround

开发者 https://www.devze.com 2023-03-04 05:03 出处:网络
I got this code : 开发者_高级运维UIViewController *nextQuestionView = [[QuizzQuestionViewController alloc]init];

I got this code :

开发者_高级运维UIViewController *nextQuestionView = [[QuizzQuestionViewController alloc]init];
    nextQuestionView.view.backgroundColor=[UIColor colorWithRed:0.44 green:0.44 blue:0.41 alpha:1];
    [self.navigationController pushViewController:nextQuestionView animated:YES];
    NSLog(@"gotonextQuestion");
    [nextQuestionView newQuestion];
    [nextQuestionView release];

And i want to remove the black corner.

Thanks.

0

精彩评论

暂无评论...
验证码 换一张
取 消