-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.升级到swift4 2.将动画修改为侧边栏的效果
- Loading branch information
qianyb
committed
Dec 25, 2018
1 parent
b925cb6
commit 1e84965
Showing
11 changed files
with
161 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
...- SlideMenu/SlideMenu.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
Project 16 - SlideMenu/SlideMenu/BaseTableViewController.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// BaseTableViewController.swift | ||
// SlideMenu | ||
// | ||
// Created by qianyb on 2018/12/25. | ||
// Copyright © 2018 AppCoda. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
import UIKit | ||
|
||
class BaseTableViewController: UITableViewController { | ||
|
||
override var preferredStatusBarStyle: UIStatusBarStyle { | ||
return UIStatusBarStyle.lightContent | ||
} | ||
|
||
override func viewDidLoad() { | ||
super.viewDidLoad() | ||
self.tableView.separatorStyle = UITableViewCellSeparatorStyle.none | ||
} | ||
} |
Oops, something went wrong.