56 lines
2.2 KiB
Swift
Executable File
56 lines
2.2 KiB
Swift
Executable File
//
|
||
// Copyright (c) 2021 Related Code - https://relatedcode.com
|
||
//
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
// THE SOFTWARE.
|
||
|
||
import UIKit
|
||
|
||
//-----------------------------------------------------------------------------------------------------------------------------------------------
|
||
class NotificationView: UIViewController {
|
||
|
||
@IBOutlet var labelTitle: UILabel!
|
||
@IBOutlet var labelSubTitle: UILabel!
|
||
@IBOutlet var switchNotification: UISwitch!
|
||
@IBOutlet var labelDescription: UILabel!
|
||
|
||
//-------------------------------------------------------------------------------------------------------------------------------------------
|
||
override func viewDidLoad() {
|
||
|
||
super.viewDidLoad()
|
||
|
||
navigationItem.titleView = UIImageView(image: UIImage(systemName: "circles.hexagongrid.fill"))
|
||
navigationItem.rightBarButtonItem = UIBarButtonItem(image: UIImage(systemName: "xmark"), style: .done, target: self, action: #selector(actionClose))
|
||
|
||
loadData()
|
||
}
|
||
|
||
// MARK: - Data methods
|
||
//-------------------------------------------------------------------------------------------------------------------------------------------
|
||
func loadData() {
|
||
|
||
labelTitle.text = "Turn on\nnotifications"
|
||
labelSubTitle.text = "Meet new people, create posts, find friends and more."
|
||
switchNotification.isOn = true
|
||
labelDescription.text = "Enable notifications to make sure you don’t miss out the post from your friend"
|
||
}
|
||
|
||
// MARK: - User actions
|
||
//-------------------------------------------------------------------------------------------------------------------------------------------
|
||
@objc func actionClose() {
|
||
|
||
dismiss(animated: true)
|
||
}
|
||
|
||
//-------------------------------------------------------------------------------------------------------------------------------------------
|
||
@IBAction func actionNotification(_ sender: Any) {
|
||
|
||
print(#function)
|
||
}
|
||
}
|