English 中文(简体)
在两种观点之间发出指示?
原标题:sending strings between two views?
  • 时间:2010-08-23 12:53:18
  •  标签:
  • iphone

i want to know how to send string between two views of a tab bar controller?is it done the same way as with simple two views? i have an application with tab bar controller with two tabs.there is a textfield in first view.i want to send the text to second view

问题回答

这样做有很多办法! 这里有两种容易的方法:

你们需要更多的细节!

在模式上阐明这两种观点,可以作为单一州或单一州后代分享。 象你这样,你只是想在两种观点之间转让数据,虽然有可能将它们联系在一起,但那将是可怕的风格。

MVC, 婴儿!

i make new method in new view, to access the string, so before u push the newController u should acces that method with String as parameter, follow this : in my newController i write this :

@implementation newController
NSString *stringRef;
-(void) constructor : (NSString*) stringParameter{
stringRef = stringParameter 
}

并按先前的意见撰写:

#import "newController.h"
@implementation viewController
UIViewController *new =[[newController alloc] init];
    [new constructor:@"this string is sending to new controller"];
    [self.navigationController pushViewController:new animated:YES];
    [new release];

它应当成为 works,拥有一只冰箱。

如果在禁制控制器内有两个不同观点的控制器应有一个共同要素,那么你可能希望把这一共同要素作为海关禁制控制器的成员目标。 当A消失时,它可以接触其母体对成员提出反对和更新意见,而B似乎可以接触同一目标并更新(反之亦然)。

但另一种想法认为,它像你那样,与一名挂名的BarController做些事情,真正的工作应该由导航控制员做。 采用这种方式分享数据的两种不同的条块条块观点,是个正常的国库。 用户并不期望在表格中作出变动,以影响另一个表格中显示的内容。 如果一种观点的数据取决于另一个观点的数据,那么第二种看法就会被推向一种UINavigation。 主计长在第一次意见之后继续工作。 认为UINavigationController有可能成为你对UITab Bartroller的看法之一。





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签