2013-02-04 69 views
0

第一個tableview必須傳遞參數給第二個tableView,我將用它來創建一個select的whith SQLite來創建第二個tableView,在第二個tableview調用viewcontroller之後創建。tableView調用另一個tableView,帶參數的indexPath

我搜索,但沒有在這裏找到。

幫助我。坦克。

對不起,我的英語不好理解。

+0

你的問題是什麼?你的問題不清楚...... – Vishal

+0

我試圖使用** didSelectRowAtIndexPath **來獲取indexPath值,並移動到第二個TableView以使用標題和選擇Sqlite。 –

+0

@FabricioAguiar那麼有什麼不工作呢? SQL語句,新視圖控制器的推送或索引路徑? – CodaFi

回答

0

很抱歉,我無法在此處編寫所有代碼,但此answer可幫助您在viewcontroller之間共享數據。

在ExampleAppDataObject.h

NSString* carName; 
@property (nonatomic, copy) NSString* carName; 

和.m文件

@synthesize carName; 


#pragma mark - 
#pragma mark -Memory management methods 

- (void)dealloc 
{ 
    //Release any properties declared as retain or copy. 
    self.carName = nil; 
    [super dealloc]; 
} 

添加該代碼,並在你的第一個tableview中,當行選擇添加carName。

0

使用Segue將第一個視圖控制器上的行選擇的數據傳遞給第二個。

相關問題