Jump to content

Haidar_phantom

Senior Member
  • Posts

    132
  • Joined

  • Last visited

Everything posted by Haidar_phantom

  1. I can’t download anything from the store is there a problem ? Im using Sideloadly ipa download it tells me failed to download
  2. Release an update or close this topic for good.
  3. im new in programming and have a project with wkwebkit written is swift 3 that load page with an ipa file in a url but the wkwebkit cant install the app unlike the uiwebview this is the code import UIKit import WebKit var WEB : WKWebView! class FirstViewController: UIViewController , WKNavigationDelegate { override func viewDidLoad() { super.viewDidLoad() let myBlog = "https://www.pgyer.com/EcCK" let url = NSURL(string: myBlog) let request = URLRequest(url: url! as URL) // init and load request in webview. WEB = WKWebView(frame: self.view.frame) WEB.navigationDelegate = self WEB.load(request) self.view.addSubview(WEB) self.view.sendSubview(toBack: WEB) } override var prefersStatusBarHidden: Bool { return true } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } func webView(_ webView: WKWebView, decidePolicyFor navigationResponse: WKNavigationResponse, decisionHandler: @escaping (WKNavigationResponsePolicy) -> Void) { if let urlResponse = navigationResponse.response as? HTTPURLResponse, let url = urlResponse.url, let allHeaderFields = urlResponse.allHeaderFields as? [String : String] { let cookies = HTTPCookie.cookies(withResponseHeaderFields: allHeaderFields, for: url) HTTPCookieStorage.shared.setCookies(cookies , for: urlResponse.url!, mainDocumentURL: nil) decisionHandler(.allow) } } }
  4. I need to inject like this message to an exsisting app and works without jailbreak can someone teach me how to do it in mac ??
  5. hello i want to know how to make these alerts or messages to apps without jailbreak how to inject the ipa with it could any one explain that to me please Thank you!
  6. im stuck in this step cd /user/gav1474 the directory is not found
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines