Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到一些应用程序在进一步滚动到UITableView.
UITableView
我怎样才能UILabel在这个区域显示一个?
UILabel
将您的 frame 属性设置为UILabel如下UITableView所示:
label.frame = CGRectMake(0, -40, 320, 40);
...并确保clipsToBounds您的表格视图的属性设置为NO.
clipsToBounds
NO