记录下, 找起来方便
下面是tweak代码
%hook CLLocation
-(CLLocationCoordinate2D) coordinate{
CLLocationCoordinate2D newCoordinate = %orig;
newCoordinate.latitude = 11.111111;//新的纬度
newCoordinate.longitude = 123.1234;//新的经度
return newCoordinate;
}
%end
记录下, 找起来方便
下面是tweak代码
%hook CLLocation
-(CLLocationCoordinate2D) coordinate{
CLLocationCoordinate2D newCoordinate = %orig;
newCoordinate.latitude = 11.111111;//新的纬度
newCoordinate.longitude = 123.1234;//新的经度
return newCoordinate;
}
%end
本文标题:伪装位置
本文链接:https://www.haomeiwen.com/subject/kjgskxtx.html
网友评论