Todo is an iOS App written in Swift. This app is used for an online video training course. This app demonstrates how to use UITableViewController.

Related tags

SwiftUI App Todo
Overview

Todo

Todo is an iOS App written in Swift. This app is used for an online video training course. This app demonstrates how to use UITableViewController.

Screenshots

Custom cell

Todo

Edit mode

Todo

Move cell

Todo

Deleting cell

Todo

Swipe to delete

Todo

Edit todo item

Todo

Create now todo item

Todo

Search bar

Todo

Search result

Todo

中文描述

Todo是一个使用Swift语言开发的iOS App,这是免费在线视频课程 Todo app的源代码,在这个app中,我演示了如何使用UITableViewController。

You might also like...
A todo list iOS app developed with swift5 and coredata to persist data, this app help people organise their tasks on categories.
A todo list iOS app developed with swift5 and coredata to persist data, this app help people organise their tasks on categories.

A todo list iOS app developed with swift5 and coredata to persist data, this app help people organise their tasks on categories. The app is simple, intuitive, and easy to use and update tasks informations.

Flixster-iOS - Flixster iOS Project for CodePath iOS Course
Flixster-iOS - Flixster iOS Project for CodePath iOS Course

Flixster-iOS Flixster iOS Project for CodePath iOS Course Flix Flix is an app th

iOS TODO App with Core Data
iOS TODO App with Core Data

IOS TODO App with Core Data In this project I did a to do app using Core Data. I

ToDo App Build With Swift And MVVM Architecture
ToDo App Build With Swift And MVVM Architecture

To Do App Project Description This project is the result of what i learned during IB Tech iOS Mobile Development Bootcamp. This project includes view

ToDo Core Data App With Swift
ToDo Core Data App With Swift

ToDoCoreDataApp Introduction Hi, my name is Aleksandr. I'm glad to see you on my GitHub. Features The application is developed in Swift language. In t

The ToDo-like app using swift
The ToDo-like app using swift

ToDo-List The ToDo-like app. The data model uses classes. The table view is created depending on the structure of the model classes. The user has the

FirstSwiftTodoApp - A Todo App Built With Swift
FirstSwiftTodoApp - A Todo App Built With Swift

SwiftTodoApp Screenshot | | |

Angela Yu iOS tutorials TODO apps practice
Angela Yu iOS tutorials TODO apps practice

Todoey ✓ Our Goal The objective of this tutorial is to understand how to save data in iOS. We'll look at various choices and learn to use UserDefaults

Terminal TODO application in Swift with ncurses.
Terminal TODO application in Swift with ncurses.

stodo Terminal TODO application in Swift with ncurses. Development streamed live

Comments
  • 搜索后无法捕捉tableView.indexPathForSelectedRow()

    搜索后无法捕捉tableView.indexPathForSelectedRow()

    JakeLin,我发现在搜索后点击搜索到的项,无法进入编辑页,而是进入新建页;我在以下代码里加了println("oo"),发现没有被执行。但是假如我在未搜索前点击某项进入编辑页,该项会被记录下来,无论我搜索到什么,点击进去后都会显示该项。还请指导一下,非常感谢! override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) { if segue.identifier == "EditTodo" { var vc = segue.destinationViewController as! DetailsViewController var indexPath = tableView.indexPathForSelectedRow() if let index = indexPath { vc.todo = todos[index.row] println("oo") } } }

    opened by fjhhjf 0
  • searchDisplayController 在ios8中被弃用后用什么替代呢?

    searchDisplayController 在ios8中被弃用后用什么替代呢?

    非常感谢大大无私的奉献,让我学到很多东西,在此有两个小疑问想问问

    在课件提到的两个地方 1, contentOffset.y += searchDisplayController!.searchBar.frame.size.height

    2, func searchDisplayController(controller: UISearchDisplayController, shouldReloadTableForSearchString searchString: String!) -> Bool { fliteredTodos = todos.filter(){$0.title.rangeOfString(searchString) != nil} return true }

    都提示 searchDisplayController 和 UISearchDisplayController 在IOS8 中被弃用,这里应该如何修改呢?

    谢谢大大

    opened by x1911 1
Owner
Jake Lin
Dad of 👶 & 👦, iOS & Android dev and Senior Mobile Tech Lead @ REA. Passionate about design, animation, kid coding and ₿. Make @IBAnimatable and SwiftWeather.
Jake Lin
100-Days-of-SwiftUI - a free online course created and delivered by Paul Hudson

100-Days-of-SwiftUI DESCRIPTION 100 Days of SwiftUI is a free online course crea

null 0 Jan 9, 2022
Todo-app-swift- - A Todo Lists app built using swift

TODO-Lists App Available on the App Store What is this? This is a todo app I mad

Kushal Shingote 3 Feb 20, 2022
Magic-8-Ball-iOS13 - Training project /Working with View

Magic-8-Ball-iOS13 Training project /Working with View Simulator.Screen.Recordin

Alexandr 0 Feb 2, 2022
Xylophone-iOS13 - Training project / sound, buttons, constraints

Xylophone-iOS13 Training project / sound, buttons, constraints Simulator.Screen.

Alexandr 0 Feb 2, 2022
The app demonstrates how to use Firebase in a SwiftUI iOS app

Firebase SwiftUIDemo app This app demonstrates how to use Firebase in a SwiftUI iOS app. Firebase Setup Go to firebase.com Click new project. Copy app

Andrew Gholson 0 Nov 28, 2021
iOS mobile development using Swift - Online Shopping Application

iOS mobile development using Swift - Online Shopping Application - yr4_sem1 This is an application developed as an individual project for Mobile Appli

Madhawa Jayagoda 2 Nov 10, 2021
A SwiftUI Weather App powered by World Weather Online API

SwiftUI-Weather The SwiftUI Weather app, allow users get the current weather for a particular locatio and view a 5-day weather forecast for the select

Dionysis Karatzas 6 Sep 29, 2022
An online community of professional chefs, home cooks, and food lovers worldwide

Yoke is an online community of professional chefs, home cooks, and food lovers worldwide. Whether you are looking for an expert or a home chef, a fanc

Laura Jelenich 3 Dec 8, 2021
Simple iOS app written with SwiftUI (and, of course, Swift) to begin exploring it.

WishList Tracking: An exploration with SwiftUI Simple iOS app written with SwiftUI (and, of course, Swift) to begin exploring it. Goal: Get used to Vi

null 0 Dec 26, 2021
An unofficial version of the Sandwiches app and pre-built materials similar to those used in the Introduction to SwiftUI session video from WWDC20

Unofficial Sandwiches The WWDC20 Session Introduction to SwiftUI provides a tutorial-like walk-through of building a list-detail SwiftUI app from scra

James Dempsey 94 Feb 11, 2022