[IOS學習筆記] UINavigationController Demo,ioscontroller

來源:互聯網
上載者:User

[IOS學習筆記] UINavigationController Demo,ioscontroller

//AppDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; self.window.backgroundColor=[UIColor whiteColor]; RootViewController *rootView=[[RootViewController alloc]init]; UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:rootView]; [_window setRootViewController:nav]; [nav release]; [rootView release]; return YES;}

 

//RootViewController.m- (void)viewDidLoad {    // Do any additional setup after loading the view.    [super viewDidLoad];    // Do any additional setup after loading the view.    [self.navigationController.navigationBar setTranslucent:NO];//設定navigationbar的半透明        self.title = @"RootViewController";//設定navigationbar上顯示的標題        [self.navigationController.navigationBar setBarTintColor:[UIColor purpleColor]];//設定navigationbar的顏色        self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonItemStyleDone target:self action:Nil];//設定navigationbar左邊按鈕        self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonItemStylePlain target:self action:Nil];//設定navigationbar右邊按鈕        [self.navigationController.navigationBar setTintColor:[UIColor whiteColor]];//設定navigationbar上左右按鈕字型顏色         //self.navigationItem.rightBarButtonItem setTarget:<#(id)#>    //動態添加一個按鈕         UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];        button.frame = CGRectMake(0, 300, 300, 50);        [button setTitle:@"新添加的動態按鈕" forState: UIControlStateNormal];        button.backgroundColor = [UIColor clearColor];        button.tag = 2000;        [button addTarget:self action:@selector(clicked:) forControlEvents:UIControlEventTouchUpInside];        [self.view addSubview:button];    }- (void)clicked:(id) sender{    SecondViewController *second = [[SecondViewController alloc]init];    [self.navigationController pushViewController:second animated:YES];    //second.str = @"hello!!";    [second release];}//這個是新按鈕的響應函數-(IBAction) buttonClicked:(id)sender {    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示"                                                    message:@"單擊了動態按鈕!"                                                   delegate:self                                          cancelButtonTitle:@"確定"                                          otherButtonTitles:nil];    [alert show];    [alert release];}
UINavigationController 導航頁
設定根介面: 
  UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:rootView];

按鈕響應:
 [button addTarget:self action:@selector(clicked:) forControlEvents:UIControlEventTouchUpInside];
  回應程式法簽名:- (void)clicked:(id) sender
 
 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.