Jump to content

iPeris

Member
  • Posts

    21
  • Joined

  • Last visited

Profile Information

  • iDevice
    iPhone X

Recent Profile Visitors

417 profile views

iPeris's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Sorry , I can't contact you... Because i'm asked authors not kurd ...
  2. No for iphone 6S plus ios 9.3.2
  3. After type make package install Output: make: xcode-select: Command not found After type make package install Output: make: xcode-select: Command not
  4. If type : $THEOS/bin/nic.plOutput: sh: bin/nic.pl no such file or directory. If type: cd /var/theos/bin/nic.pl Output: nic.pl not directory The command $THEOS not working And i'm already installed theos3 and theos iosgods , but not working on ios 9.3 , only working on ios 9.0.2
  5. Not working on ios 9.3 or later If Type $theos or make package install not working in ios 9.3 or later.Can you tell me what's best way to install on the ios 9.3
  6. How to install THEOS for ios 9.3 , Please Any Ways To Install Theos ?
  7. Thanks
  8. I'm installed theos on ios 9.3.2 , after installing , when type $THEOS/bin/nic.pl Output:: sh: bin/nic.pl no such file or directory Please tell me how to fix it Thanks
  9. The site iphone.howett.net/sdks is down , how can i download ios 8 or ios 9 sdk , please help me
  10. Hello Every Body Today I'm Created New Clash Of Clans Account , And My Town Hall Now In Level 4 When I Want To Buy Gems I Will Give This Error "your purchase could not be completed" I'm Already Tested On another devices , and created another account but not fixed !! Thanks For Help .
  11. Fixed #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" system("killall -9 SpringBoard"); #pragma GCC diagnostic pop
  12. Yes Please Help
  13. I Have Simple Application , But How To Run Full Screen This Is My File codes RootViewController.mm #import "RootViewController.h" @implementation RootViewController - (void)viewDidLoad{ [super viewDidLoad]; self.view.backgroundColor = [UIColor whiteColor]; UIWebView *webView = [[UIWebView alloc]initWithFrame:self.view.frame]; [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://mysite.com"]]]; [self.view addSubview:webView]; } @[member=end] RootViewController.h #import "AppViewController.h" #import "AppDelegate.h" @interface RootViewController: UIViewController { } @[member=end] myappApplication.mm #import "RootViewController.h" @interface myappApplication: UIApplication <UIApplicationDelegate> { UIWindow *_window; RootViewController *_viewController; } @property (nonatomic, retain) UIWindow *window; @[member=end] @implementation myappApplication @synthesize window = _window; - (void)applicationDidFinishLaunching:(UIApplication *)application { _window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; _viewController = [[RootViewController alloc] init]; [_window addSubview:_viewController.view]; [_window makeKeyAndVisible]; } - (void)dealloc { [_viewController release]; [_window release]; [super dealloc]; } @[member=end] // vim:ft=objc Make.m int main(int argc, char **argv) { NSAutoreleasePool *p = [[NSAutoreleasePool alloc] init]; int ret = UIApplicationMain(argc, argv, @"iPerisToolAppApplication", @"iPerisToolAppApplication"); [p drain]; return ret; } // vim:ft=objc Device Is iPhone 6S Plus Thanks For Help
×
  • 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