- Swift High Performance
- Kostiantyn Koval
- 188字
- 2021-08-05 16:36:24
Making a Swift application
The first step in creating a good application architecture is to create the application itself. We will be creating an iOS journal application used to make daily notes. We are not going to cover any iOS-specific topics, so you can use the same code and create OS X applications as well.
Go ahead! Open Xcode and create a new iOS single-view project application. Now, we are ready for coding.
First, let's create a Person
type, for the owner of the journal, and a journal entry type. We will use the Class
type to create both Person
and JournalEntry
. Both classes are very simple—just a bunch of properties and an initializer:
class Person { var firstName: String var lastName: String init (firstName: String, lastName: String) { self.firstName = firstName self.lastName = lastName } } class JournalEntry { var title: String var text: String var date: NSDate init (title: String, text: String) { self.title = title self.text = text date = NSDate() } }
This is the minimal setup that we need for the app. Before we move forward, let's make the code better.
推薦閱讀
- 程序設計與實踐(VB.NET)
- INSTANT Sencha Touch
- UI智能化與前端智能化:工程技術、實現方法與編程思想
- PHP 編程從入門到實踐
- HTML5 and CSS3 Transition,Transformation,and Animation
- Python完全自學教程
- PHP 7+MySQL 8動態網站開發從入門到精通(視頻教學版)
- Internet of Things with ESP8266
- Android開發三劍客:UML、模式與測試
- Moodle 3 Administration(Third Edition)
- Learning Concurrency in Python
- Java服務端研發知識圖譜
- Web前端開發全程實戰:HTML5+CSS3+JavaScript+jQuery+Bootstrap
- Arduino Robotic Projects
- Pentaho Analytics for MongoDB Cookbook