我想在应用程序名称中传递一个链接,例如,如果用户通过(应用程序名称)单击文本,那么它会导航一些特定的 url
如果有人可以帮助我的代码在这里:
Facebook *fb = [[Facebook alloc] initWithAppId:FB_ID andDelegate:self];
NSString *strUrl = [dicItemDetails valueForKey:@"imgurl"];
if ([strUrl length] == 0) {
strUrl = [[temp objectAtIndex:0] valueForKey:@"logourl"];
}
NSMutableDictionary *d = [[NSMutableDictionary alloc] initWithObjectsAndKeys:
[dicItemDetails valueForKey:@"menuItemName"], @"name"
, strCaption,@"description"
, strUrl, @"picture"
, [[temp objectAtIndex:0] valueForKey:@"facebook"], @"link"
, nil];
[fb dialog:@"feed" andParams:d andDelegate:self];