Update更新:2016年5月26日 By {MISSAJJ琴瑟静听}
此新浪微博 Swift 项目前期以全代码形式书写,后期会陆续改为StoryBoard形式的写法
- ViewController.swift
- Main.storyboard
- LaunchScreen.xib
###快速创建目录的快捷键(熟练运用,就开挂啦!)
command + shift + j 快速定位到目录
通过 ⬆️ ⬇️控制选中的目录
按下回车进入目录编辑模式
command + c 拷贝目录名称
command + n 新建文件夹
command + v 粘帖目录名称
下一步下一步 直到创建文件完毕
重复以上操作
目录名 |
说明 |
Main |
主要 |
Home |
首页 |
Message |
消息 |
Discover |
发现 |
Profile |
我 |
Tools |
工具类 |
目录 |
Controller |
Main |
MainViewController.swift(:UITabBarController ) |
目录 |
Controller |
Home |
HomeTableViewController.swift |
Message |
MessageTableViewController.swift |
Discover |
DiscoverTableViewController.swift |
Profile |
ProfileTableViewController.swift |
- 每个 ViewController 继承自
UITableViewController
- 搭建完成的文件结构图如下:
- 修改
AppDelegate
中的 didFinishLaunchingWithOptions
函数,设置启动控制器
window = UIWindow(frame: UIScreen.mainScreen().bounds)
window?.backgroundColor = UIColor.whiteColor()
window?.rootViewController = MainViewController() //改为继承与UITabBarController的MainViewController
window?.makeKeyAndVisible()