国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

[IOS學習筆記]UINavigationControllerDemo

2019-11-14 19:50:55
字體:
來源:轉載
供稿:網友
//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
 
 

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 商洛市| 江北区| 甘肃省| 招远市| 东乡族自治县| 凭祥市| 钟山县| 琼中| 弋阳县| 陵川县| 张家港市| 凤庆县| 藁城市| 东至县| 浦江县| 金门县| 石渠县| 西华县| 白城市| 历史| 简阳市| 马关县| 军事| 孝感市| 咸丰县| 崇左市| 米脂县| 枣庄市| 阿勒泰市| 怀集县| 府谷县| 昭苏县| 林西县| 海阳市| 吉水县| 平武县| 莱州市| 铁岭县| 卓尼县| 桂林市| 昭苏县|