为了账号安全,请及时绑定邮箱和手机立即绑定

使用Swift开发iOS8 App实战

林永坚 其它
难度高级
时长 7小时49分
学习人数
综合评分9.73
44人评价 查看评价
10.0 内容实用
9.9 简洁易懂
9.3 逻辑清晰
if editingStyle == UITableViewCellEditingStyle.delete {
todos.remove(at: indexPath.row)
self.tableView.deleteRows(at: [indexPath], with: UITableViewRowAnimation.automatic)
// self.tableView.reloadData()
}
let locale = NSLocale.current
let dateFormat = DateFormatter.dateFormat(fromTemplate: "yyyy-MM-dd", options: 0, locale: locale)
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = dateFormat
date.text = dateFormatter.string(from: todo.date as Date)
第一个2014这居然是个马,我以为是牛呢
慕课的ios 老师水平 和安卓比差老远了 而且编程习惯差 就喜欢复制 拷贝 误人子弟啊
let locale=NSLocale.current
let dateFormat=DateFormatter.dateFormat(fromTemplate: "yyyy-MM-dd", options: 0, locale: locale)
let dateFormater=DateFormatter()
dateFormater.dateFormat=dateFormat
date.text=dateFormater.string(from: todo.date as Date)
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell{
let cell=self.tableview.dequeueReusableCell(withIdentifier: "todocell")
let todo=Todos[indexPath.row] as TodoModel
class TodoViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()
Todos=[TodoModel(id:"1",image:"aaa.png",title:"去游乐场",date:dateFromString(dateStr:"2014-11-02")!)]
}
}
import UIKit
var Todos:[TodoModel]=[]
func dateFromString(dateStr:String)->NSDate?{
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd"
let date = dateFormatter.date(from: dateStr)
return date as NSDate?
}
哈哈哈 哈哈哈
我 adding missing constraints 是灰的 点不了,我点的 reset to suggested constraints ~
右键也可以绑定
最新的、已测试正确~

let gregorian = Calendar(identifier:Calendar.Identifier.gregorian)
let now = Date()
let components = gregorian.dateComponents([.year], from: now, to: now)
let age = components.year
课程须知
适合于想了解iOS开发的初学者
老师告诉你能学到什么?
iOS基础,常用UIKit控件的使用,Storyboards和Segues,Navigation Controller,Auto Layout基础,Container View Controllers,Tab Bar Controller......

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消