gpt4 book ai didi

ios - 如何删除 UITableView 分隔符(Xcode)

转载 作者:搜寻专家 更新时间:2023-11-01 05:51:04 24 4
gpt4 key购买 nike

在以前的 Xcode 版本中,通过 interface builderUITableView 设置 separator style to none 用于解决问题。

enter image description here

但是,这在 Xcode 7 中不再有效。如何在 Xcode 7 中删除/隐藏 UITableView 分隔符?

最佳答案

Xcode 7 is no longer picking the separator style from the interface builder. This may also be related to the iOS 9 SDK as the Base SDK.

但是,它始终可以通过编程方式实现:

// objective-c
[tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];

// swift
tableview.separatorStyle = .None

相关,这个也应用在UITableView的背景色上:

// objective-c
[tableView setBackgroundColor:[UIColor clearColor]];

// swift
tableView.backgroundColor = .clear

关于ios - 如何删除 UITableView 分隔符(Xcode),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31959794/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com