作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试清理我的代码,目前有这个三元条件。我想再次清理和重构它并使其简短。我该如何应对?
let user = AppDelegate.shared.user!.userID
let messageSender = customMessage.sender.userID
let sender = (user == messageSender)
myCell = sender ? tableView.dequeueReusableCell(withIdentifier: "firstCell", for: indexPath) : tableView.dequeueReusableCell(withIdentifier: "secondCell", for: indexPath)
最佳答案
看看这个:
let cellName = (user == messageSender) ? "firstCell" : "secondCell"
myCell = tableView.dequeueReusableCell(withIdentifier: cellName, for: indexPath)
关于ios - 如何进一步缩短三元运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52991477/
我有这个: const {ops} = getOplogStreamInterpreter(strm); ops.del.subscribe(v => { console.log('delete
我四处搜索,据我所知,POST 表单请求已被限制为 10MB (http://golang.org/src/net/http/request.go#L721)。 如果我要在我的 ServeHTTP 方
我是一名优秀的程序员,十分优秀!