0
我正在使用Parse.com的PFQueryTableView。Parse.com PFQueryTableView didselect行UIWebview
有沒有什麼辦法可以使用didselect行以編程方式將PFObject(url)發送到UIWebview?
謝謝。
我正在使用Parse.com的PFQueryTableView。Parse.com PFQueryTableView didselect行UIWebview
有沒有什麼辦法可以使用didselect行以編程方式將PFObject(url)發送到UIWebview?
謝謝。
如果有人有興趣,他們可以下載和實現SVWebViewController。
並使用下面的代碼。
我的.H文件具有以下內容。
...
@interface HomeworkSiteViewController : UITableViewController <UITableViewDelegate>
{
NSArray *sectionsArray;
}
@property (strong, nonatomic) NSArray *sectionsArray;
@end
我的.m文件包含以下內容。
@implementation HomeworkSiteViewController
@synthesize sectionsArray;
- (void)viewDidLoad
{
... //從解析對象的背景和存入的NSArray。 (在ArrayDataDesription我保存礦)
//然後保存您解析(ArrayDataDesription)鑽進sectionsArray數組,這樣就可以在didSelectRow使用下列訪問它..
self.sectionsArray = ArrayDataDesription;
在didSelectRow
然後啓動SVModalWebViewController ..
對於「initWithAddress:」訪問您的數組中的URL。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
SVModalWebViewController *webViewController = [[SVModalWebViewController alloc] initWithAddress:[[sectionsArray objectAtIndex:indexPath.row] valueForKey:@"href"]];
[self presentModalViewController:webViewController animated:YES];
}
順便說一句我是一個在開發應用程序的菜鳥。 Sooo ...這可能不是最好的方式來做到這一點。但是,它爲我工作。