iOS--頁面跳轉(UITableView)

来源:http://www.cnblogs.com/bolin-123/archive/2016/03/16/5284809.html
-Advertisement-
Play Games

本文只要實現運用(UITableView)表格實現頁面的傳值,同時運用了代理(委托)傳值。 目錄文件列表如下: AddressBookViewController.h AddressBookViewController.m ContentViewController.h ContentViewCon


本文只要實現運用(UITableView)表格實現頁面的傳值,同時運用了代理(委托)傳值。

目錄文件列表如下:

AddressBookViewController.h

#import <UIKit/UIKit.h>
#import "ContentViewController.h"
@interface AddressBookViewController : UIViewController<UITableViewDelegate,UITableViewDataSource,postValueDelegate>

@end

 

AddressBookViewController.m

 

#import "AddressBookViewController.h"

@interface AddressBookViewController ()

@property(strong,nonatomic) UITableView *adderbookview;
@property(strong,nonatomic) NSMutableArray *person;
@property(strong,nonatomic) NSString *str;

// 定義一個全局變數來接收行數
@property(assign,nonatomic)int number;

@end

@implementation AddressBookViewController

- (void)viewDidLoad {
    // 設置導航欄名稱
    self.view.backgroundColor=[UIColor colorWithRed:0.344 green:0.976 blue:1.000 alpha:1.000];
    self.title=@"通訊錄";
    
    //  設置導航欄右邊按鈕
    UIBarButtonItem *nextItem=[[UIBarButtonItem alloc] initWithTitle:@"next" style: UIBarButtonItemStylePlain target:self action:@selector(nextPage)];
    self.navigationItem.rightBarButtonItem=nextItem;
    
    self.person=[NSMutableArray array];
    for (int i=1; i<15; i++) {
        [self.person addObject:[NSString stringWithFormat:@"第%d個聯繫人",i]];
    }
    // 初始化  指定樣式
    self.adderbookview=[[UITableView alloc] initWithFrame:self.view.frame style:1];
    //  指定代理
    self.adderbookview.delegate=self;
    self.adderbookview.dataSource=self;
    [self.view addSubview:self.adderbookview
     ];
    
    [self.adderbookview registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];
    
    self.adderbookview.separatorColor=[UIColor colorWithRed:1.000 green:0.739 blue:0.353 alpha:1.000];
    
}
#pragma mark - 跳轉下一頁的方法
-(void)nextPage
{
    ContentViewController *contentV=[[ContentViewController alloc] init];
    contentV.str=self.str;
    [self.navigationController pushViewController:contentV animated:YES];
}

#pragma mark - 代理方法  顯示選中行的單元格信息
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"%@",self.person[indexPath.row]);
    
    self.str=self.person[indexPath.row];
    ContentViewController *contentV=[[ContentViewController alloc] init];
    contentV.str=self.str;
    contentV.delegate=self;
    self.number=(int)indexPath.row;
    
    [self.navigationController pushViewController:contentV animated:YES];
}

#pragma mark - 設置顯示分區數量
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

#pragma mark - 數據源 每個分區對應的函數設置
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return self.person.count;
}

#pragma mark - 數據源 每個單元格的內容
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *cellIdentity=@"cell";
    UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentity forIndexPath:indexPath];
    cell.textLabel.text=self.person[indexPath.row];
    
    return cell;
}

#pragma mark - 實現代理的方法
-(void)postValue:(NSString *)str
{
    [self.person replaceObjectAtIndex:self.number withObject:str];
    [self.adderbookview reloadData];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end

 

 

 

 

ContentViewController.h

#import <UIKit/UIKit.h>

@protocol postValueDelegate <NSObject>

-(void)postValue:(NSString *) str;

@end

@interface ContentViewController : UIViewController<UITextFieldDelegate>

@property(strong,nonatomic) UITextField *textInfo;
@property(strong,nonatomic) NSString *str;
@property(strong,nonatomic) id<postValueDelegate> delegate;

@end

 

ContentViewController.m

#import "ContentViewController.h"

@interface ContentViewController ()

@end

@implementation ContentViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // 設置導航欄名稱及整個背景的顏色
    self.view.backgroundColor=[UIColor colorWithRed:1.000 green:0.955 blue:0.563 alpha:1.000];
    self.title=@"詳情";
    
    // 設置導航欄左邊的按鈕
    self.navigationItem.leftBarButtonItem=[[UIBarButtonItem alloc] initWithTitle:@"back" style:2 target:self action:@selector(backPage)];
    // 添加輸入框 UITextField
    self.textInfo=[[UITextField alloc] initWithFrame:CGRectMake(100, 100, 200, 50)];
    self.textInfo.borderStyle=2;
    self.textInfo.text=self.str;
    self.textInfo.delegate=self;
    [self.view addSubview:self.textInfo];
    
}

#pragma mark - 返回上一頁的方法
-(void)backPage
{
    [self.navigationController popToRootViewControllerAnimated:YES];
}

#pragma mark - 點擊空白處隱藏鍵盤的方法
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
    [self.textInfo resignFirstResponder];
}

#pragma mark - 點擊 return 返回的方法
-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
    if ([textField isFirstResponder]) {
        [textField resignFirstResponder];
    }
    
    if (self.delegate) {
        [self.delegate postValue:self.textInfo.text];
    }
    [self.navigationController popToRootViewControllerAnimated:YES];
    
    return YES;
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
@end

 

AppDelegate.h

#import <UIKit/UIKit.h>
#import "AddressBookViewController.h"
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;

@end

 

AppDelegate.m

#import "AppDelegate.h"

@interface AppDelegate ()

@end

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    AddressBookViewController *AddressBook=[[AddressBookViewController alloc] init];
    
    UINavigationController *na=[[UINavigationController alloc] initWithRootViewController:AddressBook];
    self.window.rootViewController=na;
    return YES;
}
.........
@end

註意:

1、在第一頁只需要點擊UITableView對應的值;

2、在第二頁需要按鍵盤上的 return 健才能傳值到第一頁。

運行結果:

2016-03-16


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • } ———————————————————————————————————————————— 為什麼要在調用父類setFrame之前改那個y值呢? ———————————————————————————————————————————— 最好在layoutSubViews裡面設置子控制項的frame,
  • 硬體:macbook air 系統:OSX EI Capitan 版本:10.11.3 xcode : Version 7.2.1 (7C1002) 最近在做ios的靜態庫(據說framework動態庫不能上傳到app store).a 和framework都做過了,這裡就先說framework的制
  • 單機搭建Android開發環境五,基於Android Studio搭建應用開發環境。
  • 背景:最近在把自己之前寫的一個應用換成Material Design風格,在看官方Guide後動手試了一試,沒想到出門就遇到了坑,在換成Material Design風格的主題後,我設置了一下colorPrimary,colorPrimaryDark(MD風格對應於android:statusBar
  • 數組 一.認識數組 oc中可以把NSObject對象的子類放到數組這個集合中,但是int、float、double等基礎數據類型需要先進行轉換才可以存入數組。 oc中數組以NS開頭,其中分為可變數組和不可變數組; 1.不可變數組(NSArray) 數組在創建的時候被初始化之後,不可以再次進行增、刪、
  • ios如何獲取圖片(二)無沙盒下 解決問題 解決問題1:tableView滑動卡頓,圖片延時載入 解決方法:添加非同步請求,在子線程里請求網路,在主線程刷新UI 解決問題2:反覆請求網路圖片,增加用戶流量消耗 解決方法:創建了downloadImage,downloadImage屬於數據源,當tabl
  • 一:NSURLConnection(IOS9.0已經棄用)是早期apple提供的http訪問方式。以下列出了常用的幾個場景:GET請求,POST請求,Response中帶有json數據 對於NSURLConnection有以下註意事項:(1)sendAsynchronourequest: queue
  • 今天有些匆忙。 效果圖如下: 代碼如下:
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...