Swift:保存CLPlacemark属性值(只读问题)

时间:2015-08-20 18:07:01

标签: swift core-location cllocation

我有一个CLLocation对象,我填充了纬度和经度,并且我正在尝试获取该位置的邮政编码,我在下面有这个函数,名为getLocation,当我打印“placeMark.postalCode!”时值我得到一个有效的邮政编码,但在尝试保存该值时,我试图创建一个名为location的字符串变量并将该值设置为邮政编码,但每当我尝试在我的应用程序中显示它时,它总是空白。我也尝试使用一个返回值的函数,但它也不起作用。是因为在访问这些值时它们只是只读的吗?

echo'<table border="1" ><th >Date and Time</th><th>Plate</th>   <th>Confidence</th><th>Image Name</th>';
while($row = mysql_fetch_array($result)) {
    echo "<tr>";
    echo "<td>" . $row['dt'] . "</td>";
    echo "<td>" . $row['plate'] . "</td>";
    echo "<td>" . $row['confidence'] . "</td>";
echo "<td><a href='http://192.xxx.x.xx/Pictures/plates/".$row['uuid']."' target='blank_'>" . $row['uuid'] . "</a></td>";
    echo "</tr>";
}
echo "</table>";

0 个答案:

没有答案