作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在下面有一个文本字段和按钮以及一个 WebView 。
当我在文本字段中输入字符串并按下搜索按钮时,整个 JSON 响应字符串显示在 UIWebview
实例中。
所以我的要求是显示一个与文本字段中输入的字符串相匹配的特定方法。
即使我在文本字段中输入任何字符串,当我按下搜索按钮时,它也会在 webview 中显示所有内容。
是否可以从 responseString 获取特定方法?
建议需要完成的更改。
.h文件
IBOutlet UITextField *searchtextField;
UIWebView *webView;
}
-(IBAction)search;
@property (nonatomic, retain) UIWebView *webView;
.m 文件
-(IBAction)search
{
NSString *searchString=searchtextField.text;
NSString *urlAddress = [NSString stringWithFormat:@"http://api.kivaws.org/v1/loans/search.json?status=fundraising",searchString];
NSURL *url = [NSURL URLWithString:urlAddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[webView loadRequest:requestObj];
}
最佳答案
只需将 %@
放在要添加的 searchString
位置...这一切都是关于您的,因为我不知道您要添加的位置
示例
NSString *searchString=searchtextField.text;
NSString *urlAddress = [NSString stringWithFormat:@"http://api.kivaws.org/v1/loans/search.json?status=%@",searchString];
试一试....
关于iphone - 如何从 webview 中的 json responseString 获取特定方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6435442/
我是一名优秀的程序员,十分优秀!