加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Swift--UINavigationController

发布时间:2020-12-14 07:10:07 所属栏目:百科 来源:网络整理
导读:代码目录 AppDelegate.swift func application(application: UIApplication,didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) - Bool { // Override point for customization after application launch. self.window = UIWindow(frame

代码目录


AppDelegate.swift

func application(application: UIApplication,didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
        // Override point for customization after application launch.
        self.window = UIWindow(frame: UIScreen.mainScreen().bounds);
        self.window?.backgroundColor = UIColor.whiteColor();
        self.window?.makeKeyAndVisible();
        let main = ViewController();
        let nvc = UINavigationController(rootViewController: main);
        self.window?.rootViewController = nvc;
        return true
    }

ViewController.swift

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        self.title = "Main";
        let nextItem = UIBarButtonItem(title: "Next",style: UIBarButtonItemStyle.Plain,target: self,action: "next");
        self.navigationItem.rightBarButtonItem = nextItem;
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        
    }
    
    func next(){
        let next = Next();
        self.navigationController?.pushViewController(next,animated: true);
    }


}

Next.swift

class Next: UIViewController {
    
    override func viewDidLoad() {
        super.viewDidLoad()
        self.title = "Next"
        let btn = UIButton(frame: CGRect(x: 110,y: 100,width: 100,height: 40));
        btn.setTitle("Back",forState: .Normal)
        btn.addTarget(self,action: "butClick",forControlEvents: .TouchUpInside)
        btn.backgroundColor = UIColor.blueColor();
        self.view.addSubview(btn)
    }
    
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }
    
    func butClick()
    {
        self.navigationController?.popViewControllerAnimated(true);
    }

}

效果图

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读