Swift_UINavigationController

22 篇文章 0 订阅
//
//  AppDelegate.swift
//  Swift_UINavigationController

import UIKit

@UIApplicationMain

class AppDelegate: UIResponder, UIApplicationDelegate {
                            
    var window: UIWindow?


    func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
        self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
        // Override point for customization after application launch.
        //创建一个子视图控制器
        let rvc:RootViewController = RootViewController()
        //创建一个导航 rvc 作为根视图控制器
        let navC = UINavigationController(rootViewController: rvc)
        //标签标题
        navC.tabBarItem.title = "First"
        //标签的图片
        navC.tabBarItem.image = UIImage(named:"icon_near")
        
        //创建第二个视图控制器
        
        let rvc1:RootViewController = RootViewController()
        let navC1 = UINavigationController(rootViewController: rvc1)
        navC1.tabBarItem = UITabBarItem(title: "second", image:UIImage(named: "icon_phone"), tag: 100)
        
        //第三个
        let rvc2:RootViewController = RootViewController()
        let navC2 = UINavigationController(rootViewController: rvc2)
        navC2.tabBarItem.title = "Third"
        navC2.tabBarItem.image = UIImage(named: "icon_sina")
        //  选中后的图片 需要渲染
        navC2.tabBarItem.selectedImage = UIImage(named: "icon_sina")?.imageWithRenderingMode(UIImageRenderingMode.AlwaysOriginal)
        
       let tab = UITabBarController()
        
        tab.viewControllers = [navC,navC1,navC2]
        self.window!.rootViewController = tab
        
        
        self.window!.backgroundColor = UIColor.whiteColor()
        self.window!.makeKeyAndVisible()
        return true
    }

    func applicationWillResignActive(application: UIApplication) {
        // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
        // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
    }

    func applicationDidEnterBackground(application: UIApplication) {
        // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
        // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
    }

    func applicationWillEnterForeground(application: UIApplication) {
        // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
    }

    func applicationDidBecomeActive(application: UIApplication) {
        // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
    }

    func applicationWillTerminate(application: UIApplication) {
        // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
    }


}


//
//  RootViewController.swift
//  Swift_UINavigationController

import Foundation
import UIKit


class RootViewController : UIViewController,ChangeLabelTextDelegate {
    var myLabel :UILabel?//成员变量
    
    override func viewDidLoad() {
        
        let nextItem = UIBarButtonItem(title: "跳转", style: UIBarButtonItemStyle.Plain, target: self, action: "clickItem")
        self.navigationItem.leftBarButtonItem = nextItem
        
        myLabel = UILabel(frame: CGRectMake(0, 100, 320, 50))
        myLabel!.text = "标签"
        
        self.view.addSubview(myLabel!)
        
    }
    
    //无参无返回值函数 按钮触发
    func clickItem() {
        let svc = SecondViewController()
        //设置代理
        svc.delegate = self
        //界面跳转
        self.navigationController!.pushViewController(svc, animated: true)
    }
    //修改label内容
    func changeLabelText(controller: SecondViewController, text: String) {
        myLabel!.text = text;
    }
    
    
}

//
//  SecondViewController.swift
//  Swift_UINavigationController

import Foundation
import UIKit

protocol ChangeLabelTextDelegate :NSObjectProtocol {
    func changeLabelText(controller:SecondViewController ,text:String)
}

class SecondViewController :UIViewController {
    //代理
    var delegate:ChangeLabelTextDelegate?
    var cnt = 0
    
    override func viewDidLoad() {
        self.view.backgroundColor = UIColor.redColor()
        let button = UIButton(type: UIButtonType.System)
        button.frame = CGRectMake(110, 100, 100, 50)
        
        button.setTitle("传值", forState:.Normal)
        
        button.addTarget(self, action: "btnClick:", forControlEvents:UIControlEvents.TouchUpInside)
        
        self.view.addSubview(button)
    }
    
    func btnClick(button:UIButton) {
        //通知代理修改值
        if (delegate != nil) {
            delegate!.changeLabelText(self, text:"传值")
        }
    }

    
    
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值