iphone - 获取具有 ROOT 权限的 GPS 没有警报 View (越狱)
<p><p>如何在没有警报 View 的情况下获取 gps(越狱 iphone)?</p>
<pre><code>NSString *newText;
CLLocationManager * locationManager = [ init];
;
;
CLLocation* location = ;
CLLocationCoordinate2D coordinate = ;
newText = [ initWithFormat: @"Your Position : %f %f", coordinate.latitude, coordinate.longitude];
NSLog(@"%@", newText);
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><pre><code>;
</code></pre>
<p>要使用此功能,您的应用程序权利应具有 <code>com.apple.locationd.authorizeapplications</code> 键,并将 bool 值设置为 true。</p>
<p><strong>更新</strong></p>
<p>找到了更好的解决方案。将 bool 值设置为 true 的 <code>com.apple.locationd.preauthorized</code> 键添加到您的应用程序权利。这将对您的应用程序进行预授权,因此您可以在没有任何用户许可或私有(private) API 的情况下请求位置。我在装有 iOS 5-7 的 iPhone 4S、5、5C、5S 上对其进行了测试。它可以在没有任何 Info.plist 的守护程序或命令行工具中工作,只是普通的二进制文件。 </p>
<p>为了测试我使用了以下代码</p>
<pre><code>#import <CoreLocation/CoreLocation.h>
@interface LocationDelegate : NSObject<CLLocationManagerDelegate>
@end
@implementation
-(void)locationManager:(CLLocationManager*)manager didUpdateLocations:(NSArray*)locations
{
NSLog(@"%@", locations);
}
@end
int main(int argc, char * argv[])
{
LocationDelegate* delegate = [ init];
CLLocationManager* manager = [ init];
manager.delegate = delegate;
;
[ run];
return 0;
}
</code></pre></p>
<p style="font-size: 20px;">关于iphone - 获取具有 ROOT 权限的 GPS 没有警报 View (越狱),我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/11086083/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/11086083/
</a>
</p>
页:
[1]