0

配列のアドレス帳から取得したプレフィックス tel: 65を電話番号に追加する方法。

viewdidload でこれを行うと、null になります

NSURL *phoneUrl = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@", phoneNumbers]];
    NSLog(@"Some Text %@", phoneUrl);
    NSLog(@"Phone Numbers %@", phoneNumbers);

ここで phoneNumbers は、連絡先ごとの番号の配列です

うだて:

- (void)viewDidLoad
{
    [super viewDidLoad];

    [self.view setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"BG.jpg"]]];
    [detailTableView setBackgroundColor:[UIColor clearColor]];
    detailTableView.separatorStyle = UITableViewCellSeparatorStyleNone;

    ShadowTable *Shadow = [[ShadowTable alloc] init];
    [Shadow ForTableView:detailTableView ForView:self.view HeaderAlpha:0.3 FooterAlpha:0.6];

    for(int i = 0 ; i <[phoneNumbers count]; i++)
    {
        NSURL *phoneUrl = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@", [phoneNumbers objectAtIndex:i]]];
        NSLog(@"Phone with URL %@", phoneUrl);
        NSLog(@"Phone Numbers %@", phoneNumbers);
    }


}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {

    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return [phoneTypes count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    UILabel *typeLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 10, 100, 40)];
    typeLabel.text = [phoneTypes objectAtIndex:indexPath.row];
    [typeLabel setBackgroundColor:[UIColor clearColor]];
    [cell addSubview:typeLabel];



    UILabel *numberLabel = [[UILabel alloc] initWithFrame:CGRectMake(130, 10, 170, 40)];
    numberLabel.text = [phoneNumbers objectAtIndex:indexPath.row];
    [numberLabel setBackgroundColor:[UIColor clearColor]];
    [cell addSubview:numberLabel];

    if (indexPath.row %2 == 0) {

        cell.contentView.backgroundColor = [UIColor colorWithRed:0.95 green:0.95 blue:0.95 alpha:1.0];
    } else {

        cell.contentView.backgroundColor = [UIColor colorWithRed:0.9 green:0.9 blue:0.9 alpha:1.0];
    }

    //cell.textLabel.text = [phoneNumbers objectAtIndex:indexPath.row];

    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    [tableView deselectRowAtIndexPath:indexPath animated:YES];
}
4

1 に答える 1

1

文字列ではなく配列を使用しています。したがって、サフィックスとして追加するには、配列のすべての要素にアクセスする必要があります。

これを使って :

for(int i = 0 ; i <[phoneNumbers count]; i++)
{
    NSString *str = [@"tel:" stringByAppendingFormat:@"%@",[phoneNumbers objectAtIndex:i]];
str = [str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *phoneUrl = [NSURL URLWithString:str];
NSLog(@"Some Text %@", phoneUrl);
}

編集:「2013-05-31 14:58:24.759 GTCallBack[8225:c07]」にスペースがあったため、URL は null だったので、エンコードしてスペースを削除します。お役に立てば幸いです。

于 2013-05-31T10:47:30.113 に答える