无法打开位置服务屏幕

时间:2019-01-08 12:44:08

标签: ios swift xcode cllocationmanager cllocation

请有人帮我。如何从我的应用程序打开位置服务?我试过了,但是没用

__global__ void kernel1(int *data)
{
        __shared__ int data_s[32];

        size_t t_id = threadIdx.x;

        data_s[t_id] = data[t_id];

        __syncwarp();
        if (1 <= t_id)
                data_s[t_id] += data_s[t_id - 1];
        __syncwarp();
        if (2 <= t_id)
                data_s[t_id] += data_s[t_id - 2];
        __syncwarp();
        if (4 <= t_id)
                data_s[t_id] += data_s[t_id - 4];
        __syncwarp();
        if (8 <= t_id)
                data_s[t_id] += data_s[t_id - 8];
        __syncwarp();
        if (16 <= t_id)
                data_s[t_id] += data_s[t_id - 16];

        data[t_id] = data_s[t_id];
}

1 个答案:

答案 0 :(得分:1)

从iOS 11开始,无法以编程方式打开“设置”的特定子屏幕,现在您只能使用URL字符串App-Prefs

来打开“设置”应用程序的主屏幕。