Hi friends My project is based o parsing json datas from url, i have parsed datas and displayed in screen but my problem is, some data i received from json is in the from of link. but when i viewd that in label it looks like normal data, not as link
. i need to view it as link
. when user clicks the link it has go to that respective webpage in mobile browser. Please help me on how to do it. Here is the code which i tried
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"SuccessCell";
SuccessListCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier forIndexPath:indexPath];
cell.title.text = (NSString *)[array1 objectAtIndex:indexPath.row];
cell.linklabel.text = (NSString *)[array3 objectAtIndex:indexPath.row];//Here i need show this data as link
cell.datetime.text = @"Success Story URL(Pictures,Videos,etc.);";
cell.desc.text = (NSString *)[array11 objectAtIndex:indexPath.row];
return cell;
}
Please Help me how to do this Thanks in Advance