选择选取器项目在文本字段中输入详细信息并保存
Posted
技术标签:
【中文标题】选择选取器项目在文本字段中输入详细信息并保存【英文标题】:Selecting Picker items text the details in textfields and save 【发布时间】:2011-12-05 11:58:55 【问题描述】:我在选择器中保留了 3 个项目,通过选择我想要文本字段中的文本的第一个选择器项目,分别在想要保存数据之后。我不会如何编写代码来将数据保存在 appdelegate 类中 -
(void)applicationDidEnterBackground:(UIApplication *)application
【问题讨论】:
【参考方案1】:hi just check this link you will find the demo example their. [Click Here][1]
[1]: http://www.roseindia.net/tutorial/iphone/examples/UIPickerView/UIPickerViewExample.html
and for the store data in appdelegate //
in .h
@interface Hiar_Style_NewAppDelegate :
NSString *strselect;
@property(nonatomic,retain)NSString *strselect;
in .m
@synthesize strselect;
and whenever you want to use it just make delegate of app deegate file like this
Hiar_Style_NewAppDelegate *objappdel=(Hiar_Style_NewAppDelegate *)[[UIApplication sharedApplication]delegate];
and use that object like this
objappdel.strselect=@"";
【讨论】:
感谢您的回答。我通过选择完全保留了pickerview,但我需要代码来保存数据。 ohhk 那么你想在其中存储选定的数据?? 通过选择选择器项目,我必须在文本字段中输入详细信息并保存(代码自动转到应用程序委托类)- (void)save //[self categorySelection]; [自我dismissModalViewControllerAnimated:是]; 哦,所以在这个方法中 - (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component //写你的文本文件 name.text 而不是 mlabel.text并且您还可以轻松地将文本字段值保存在 appdelegate 对象字符串中,您可以传递他们的 //now 调用 appdelegate 对象及其方法,例如 [objappdel save]; //并传递值 嗨,kartik,如果可能的话,你能提供你的邮件ID吗?以上是关于选择选取器项目在文本字段中输入详细信息并保存的主要内容,如果未能解决你的问题,请参考以下文章