“地图视图”最初并不显示所有图钉。因此,我必须放大/缩小才能看到所有这些图像。
如果我想看到所有的针脚都互相重叠,该怎么办?
我记得这个问题在早期版本的Swift(例如7或8)中不存在。
let london = Capital(title: "London", coordinate: CLLocationCoordinate2D(latitude: 51.507222, longitude: -0.1275), info: "Home to the 2012 Summer Olympics.")
let oslo = Capital(title: "Oslo", coordinate: CLLocationCoordinate2D(latitude: 59.95, longitude: 10.75), info: "Founded over a thousand years ago.")
谢谢!
答案 0 :(得分:0)
您可以在添加注释后尝试
// Traffic light simul`ator
#include <stdio.h>
#include <time.h>
int main(void)
{
time_t start, end;
double elapsed;
time(&start); /* start the timer */
do {
time(&end);
elapsed = difftime(end, start);
if (elapsed )
{
printf("green");
}
} while(elapsed < 9);
}