TL; DR:将我的GH-Pages域名更改为自定义域名,自定义域名效果良好,但默认(旧)域名不会重定向到自定义域名。
我有一个位于the default domain的GitHub页面repo,然后将其切换为custom domain,工作正常,默认域重定向到新域。然后我将repo的名称更改为新域名,但是当我转到旧域时,它返回404,所以我将repo的名称更改回默认名称(mohamed3on.github.io),但它仍然返回404并且说
这里没有GitHub Pages网站。
repo包含CNAME
mohamed3on.online
。
您认为我应该改变什么?
答案 0 :(得分:1)
请确保您已在 // MARK: TextViewTableViewCellDelegate
func textViewDidChange(_ textView: UITextView!, for indexPath: IndexPath!) {
self.presenter?.valueChanged(section: indexPath.section, value: textView.text)
isChanged = true
self.tableView.beginUpdates()
self.tableView.endUpdates()
}
override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
var ret = DEFAULT_CELL_HEIGHT
if let cell = tableView.dequeueReusableCell(withIdentifier: SECTION_TYPE_FREEFORM) as? TextViewTableViewCell {
cell.textView.text = self.presenter?.cellBody(section: indexPath.section)
cell.textView.sizeToFit()
let width = self.view.frame.size.width - HORIZONTAL_PADDING
let calculatedHeight = cell.textView.sizeThatFits(CGSize(width: width, height: CGFloat(MAXFLOAT))).height + 10
if(calculatedHeight > ret) {
ret = calculatedHeight
}
}
return ret
}
中包含在根目录中。