伪装位置

记录下, 找起来方便
下面是tweak代码

%hook CLLocation
-(CLLocationCoordinate2D) coordinate{
  CLLocationCoordinate2D newCoordinate = %orig;
  newCoordinate.latitude = 11.111111;//新的纬度
  newCoordinate.longitude = 123.1234;//新的经度
  return newCoordinate;
}
%end

你可能感兴趣的:(伪装位置)