在我的应用程序中,我有很多文本字段,最后还有拍照按钮。但是当我从选择照片返回时,插入的文本字段值显示为空白。
单击照片按钮时,我尝试将文本字段值存储到字符串中。当我从那里返回时,我将字符串值设置为 text fied 但它向我展示了糟糕的过度。
帮我!!
-(void)ViewWillAppear
{
if (clkph) {
txtdate.text=[NSString stringWithFormat:@"%@",phdate];
NSLog(@"%@",txtdate.text);
txttime.text=[NSString stringWithFormat:@"%@",phtime];
NSLog(@"%@",txttime.text);
}
}
-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{
clkph=YES;
phdate=[NSString stringWithFormat:@"%@",txtdate];
NSLog(@"%@",phdate);
phtime=[NSString stringWithFormat:@"%@",txttime];
NSLog(@"%@",phtime);
}