UITableView傳值(自己使用)(屬性,代理傳值)

来源:http://www.cnblogs.com/fume/archive/2016/03/16/5284851.html
-Advertisement-
Play Games

今天有些匆忙。 效果圖如下: 代碼如下:


今天有些匆忙。

效果圖如下:

 

 

 

 

 

 

 

代碼如下:

#import <UIKit/UIKit.h>
#import "FirstViewController.h"

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;


@end

 

 

 

 

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    FirstViewController *first=[[FirstViewController alloc]init];
    UINavigationController *navc=[[UINavigationController alloc]initWithRootViewController:first];
    self.window.rootViewController=navc;
    return YES;
}

 

 

#import <UIKit/UIKit.h>
#import "SecondViewController.h"

@interface FirstViewController : UIViewController<UITableViewDataSource,UITableViewDelegate,postValueDelegate>

@property(strong,nonatomic)UITableView * tableview;

@property(strong,nonatomic)NSMutableArray *array;


@property(strong,nonatomic)NSString *st;



@end

 

 

 

#import "FirstViewController.h"

@interface FirstViewController ()

@property(assign,nonatomic)int a;

@end

@implementation FirstViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor=[UIColor yellowColor];
    self.title=@"首頁";
    UIBarButtonItem *nextItem=[[UIBarButtonItem alloc]initWithTitle:@"下一頁" style:UIBarButtonItemStylePlain target:self action:@selector(nextpage)];
    self.navigationItem.rightBarButtonItem=nextItem;
    
    self.array=[NSMutableArray array];
    
    for (int i=1; i<20; i++) {
        [self.array addObject:[NSString stringWithFormat:@"你摔了%d跤",i]];
    }
    
    self.tableview=[[UITableView alloc]initWithFrame:self.view.frame style:1];
    
    self.tableview.separatorColor=[UIColor redColor];
    
    self.tableview.delegate=self;
    
    self.tableview.dataSource=self;
    
    [self.view addSubview:self.tableview];
    
    [self.tableview registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];
}


-(void)postvalue:(NSString *)str
{
//    self.st=str;
    
    [self.array replaceObjectAtIndex:self.a withObject:str];
    
    [self.tableview reloadData];
    
   
//    NSLog(@"%@",self.st);
    
}


#pragma mark 數據源  每個分區顯示行數設置
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return self.array.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.array[indexPath.row];
    
    
    
    
    
    return cell;
}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    
    NSLog(@"%@",self.array[indexPath.row]);
    

    self.st=self.array[indexPath.row];
    SecondViewController *second=[[SecondViewController alloc]init];
     second.str=self.st;
    second.delegate=self;
    self.a=(int)indexPath.row;
    
    NSLog(@"%d",self.a);

   
    [self.navigationController pushViewController:second animated:YES];
}







-(void)nextpage
{
    SecondViewController *second=[[SecondViewController alloc]init];
    
    
    second.str=self.st;
   
    [self.navigationController pushViewController:second animated:YES];
}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/

@end

 

#import <UIKit/UIKit.h>
//創建協議,聲明方法
@protocol postValueDelegate <NSObject>

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

@end

@interface SecondViewController : UIViewController<UITextFieldDelegate>

@property(strong,nonatomic) UITextField  * textName;

@property(strong,nonatomic) NSString *str;

@property(strong,nonatomic) id<postValueDelegate> delegate;

@end

 

 

#import "SecondViewController.h"

@interface SecondViewController ()

@end

@implementation SecondViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor=[UIColor greenColor];
    self.navigationItem.hidesBackButton=YES;
    self.title=@"尾頁";
    self.navigationItem.leftBarButtonItem=[[UIBarButtonItem alloc]initWithTitle:@"back" style:2 target:self action:@selector(backpage)];
    
    self.textName=[[UITextField alloc]initWithFrame:CGRectMake(100, 300, 150, 60)];
    
    self.textName.borderStyle=1;
    
    self.textName.text=self.str;
    
    self.textName.delegate=self;
    
    [self.view addSubview:self.textName];
}

-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
    if ([textField isFirstResponder]) {
        [textField resignFirstResponder];
    }
    
    if (self.delegate) {
        [self.delegate postvalue:self.textName.text];
        
    }
    
    [self.navigationController popToRootViewControllerAnimated:YES];
    
    return YES;
}


-(void)backpage
{
    if (self.delegate) {
        [self.delegate postvalue:self.textName.text];
        NSLog(@"%@",self.textName.text);
    }
    
    [self.navigationController popToRootViewControllerAnimated:YES];
}


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

/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/

@end

 


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

-Advertisement-
Play Games
更多相關文章
  • 這種問題,通常出現在添加第三方庫文件或者多人開發時。 這種問題一般是找不到文件而導致的鏈接錯誤。 我們可以從如下幾個方面著手排查。 1.以如下錯誤為例,如果是多人開發,你同步完成後發現出現如下的錯誤。 錯誤中出現了“MyPageLogViewController”這個類,你可以找到這個類的.m文件,
  • } ———————————————————————————————————————————— 為什麼要在調用父類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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...