如何将String.UTF8View.Index转换为String.CharacterView.Index?

时间:2016-01-06 10:06:44

标签: ios iphone swift ios7 swift2

我在swift中使用String处理。但是当我想将String.UTF8View.Index转换为String.CharacterView.Index时,我遇到了一些麻烦。有人知道该怎么办?提前感谢!

1 个答案:

答案 0 :(得分:1)

使用以下init函数:

    $jsondata = file_get_contents("hotsongs.json");
    $json = json_decode($jsondata, true);
    $output = "<table><tr><th>Artist Name</th><th>Title</th></tr>";
    foreach($json['response']['songs'] as $song){

        $output .='<tr>';
        $output .= '<td>'.$song['artist_name'].'</td>';
        $output .= '<td>'.$song['title'].'</td>';
        $output .='</tr>';

    }
    $output .= "</table>";

    echo $output;

您必须在此函数中使用String作为参数。