我无法找到如何在viewController中的tableView上创建圆角。
viewcontroller.m:
我添加了框架并导入了:
#import <QuartzCore/QuartzCore.h>
还有voidDidLoad方法:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
[self.view.layer setCornerRadius:7.0];
}
提前致谢!
答案 0 :(得分:0)
这应该有效:
#import <QuartzCore/QuartzCore.h>
self.view.layer.cornerRadius = 7;
self.view.layer.masksToBounds = YES;