美文网首页
伪装位置

伪装位置

作者: 西博尔 | 来源:发表于2017-07-21 10:59 被阅读66次

    记录下, 找起来方便
    下面是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