3
Edit the status bar.
The status bar displays the carrier, time, and charge of the device.
EXAMPLE

INSTRUCTIONS
EDIT VIEWCONTROLLER.SWIFT
- Open ViewController.swift
- Copy and paste code
RUN
- Click Product
- Click Run
CODE
import UIKit
class ViewController: UIViewController
{
override func prefersStatusBarHidden() -> Bool
{
return true
}
}