我想"皮条客"我的表视图标题 它应该达到60.0的高度。
我试过了:
template<class, class = void> struct has_any_base : std::false_type {};
template<class T>
struct has_any_base<T, std::void_t<decltype(T{any_base<T>{}})>> : std::true_type {};
它会更高,但&#34;内容&#34;将保持相同的大小:
答案 0 :(得分:0)
我建议指定帧而不是高度。
NSRect frame = tableView.headerView.frame;
frame.size.height = 26;
tableView.headerView.frame = frame;