- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试制作一个应用程序来重新启动和重启任何 iDevice。我的代码在 iOS 模拟器中运行良好,但在我的 iDevice 上没有任何反应(是的,它是越狱的)。
这是我的呼吸代码:
if(system("killall SpringBoard"));
if(system("killall -9 SpringBoard"));
if (system([@ "reboot" UTF8String]));
if ([[[UIDevice currentDevice] systemVersion] hasPrefix:@"2."])
notify_post("com.apple.language.changed");
if (system([@ "killall SpringBoard" UTF8String]));
这是我的重启代码:
if (system([@ "reboot" UTF8String]));
respring 只工作一次然后停止工作:(
我的脚本:
#!/bin/sh
# Script.sh
# Respring
#
# Created by David on 08.11.12.
# Copyright (c) 2012 David. All rights reserved.
app binary - root:wheel 4755
script - root:wheel 0755
C=/${0}
C=${C%/*}
declare -a flags
[[ :${DYLD_INSERT_LIBRARIES}: == */MobileSubstrate.dylib: ]] && flags[${flags[@]}]=--substrate
exec "${C:-.}"/Respring "${flags[@]}" -- "$@" 2>>/tmp/Respring.log
如果呼吸不起作用,这是我的 alertView,用于重新启动并使用 BugReport 重新启动
//Respring
-(IBAction)respring {
UIAlertView *respring=[[UIAlertView alloc]initWithTitle:@"Respring"
message:@"Do you want to respring your iDevice?"
delegate:self
cancelButtonTitle:@"No"
otherButtonTitles:@"Yes", nil];
respring.tag = 1;
[respring show];
}
//AlertView
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
if (buttonIndex == 1){
if (alertView.tag ==1) {
setuid(0); system("killall i5MMS_");
UIAlertView *respringerror=[[UIAlertView alloc]initWithTitle:@"Error"
message:@"Respring is not possible, please send me an Bug Report."
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:@"Send Bug Report",nil];
respringerror.tag = 3;
[respringerror show];
}
if (alertView.tag ==2) {
if (system([@ "reboot" UTF8String]));
UIAlertView *respringerror=[[UIAlertView alloc]initWithTitle:@"Error"
message:@"Rebooting is not possible, please send me an Bug Report."
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:@"Send Bug Report", nil];
respringerror.tag = 4;
[respringerror show];
}
if (alertView.tag ==3) {
iDevice.text = [UIDevice currentDevice]. model;
ios.text = [UIDevice currentDevice]. systemVersion;
MFMailComposeViewController *composer = [[MFMailComposeViewController alloc] init];
[composer setMailComposeDelegate:self];
if ([MFMailComposeViewController canSendMail]) {
[composer setToRecipients:[NSArray arrayWithObjects:@"david.goelzhaeuser@me.com", nil]];
[composer setSubject:@"Bug Report"];
[composer setMessageBody: [NSString stringWithFormat: @"%@ \n%@ \n%@", ios.text,iDevice.text, jailbreakstatus.text]isHTML:NO];
[composer setModalTransitionStyle:UIModalTransitionStyleCoverVertical];
[composer setModalPresentationStyle:UIModalPresentationFormSheet];
[self presentModalViewController:composer animated:YES];
}
}
if (alertView.tag ==4) {
iDevice.text = [UIDevice currentDevice]. model;
ios.text = [UIDevice currentDevice]. systemVersion;
MFMailComposeViewController *composer = [[MFMailComposeViewController alloc] init];
[composer setMailComposeDelegate:self];
if ([MFMailComposeViewController canSendMail]) {
[composer setToRecipients:[NSArray arrayWithObjects:@"david.goelzhaeuser@me.com", nil]];
[composer setSubject:@"Bug Report"];
[composer setMessageBody: [NSString stringWithFormat: @"%@ \n%@ \n%@", ios.text,iDevice.text, jailbreakstatus.text]isHTML:NO];
[composer setModalTransitionStyle:UIModalTransitionStyleCoverVertical];
[composer setModalPresentationStyle:UIModalPresentationFormSheet];
[self presentModalViewController:composer animated:YES];
}
}
}
}
//Reboot
-(IBAction)reboot;{
UIAlertView *reboot=[[UIAlertView alloc]initWithTitle:@"Reboot"
message:@"Do you want to reboot your iDevice? If you have a tethered jailbreak you have to make a tethered boot after rebooting!"
delegate:self
cancelButtonTitle:@"No"
otherButtonTitles:@"Yes", nil];
reboot.tag = 2;
[reboot show];
}
最佳答案
示例
我将我的应用程序命名为 Respring
在我的应用程序代码中,我有一个 RespringViewController.h
和 RespringViewController.m
在 ResringViewController.h
中,我将添加一个按钮来调用我的重新启动操作。
#import <UIKit/UIKit.h>
@interface RespringViewController : UIViewController
//Creates the button
- (IBAction) respring:(id)sender;
@end
现在在 RespringViewController.m
中
#import "RespringViewController.h"
@interface RespringViewController ()
@end
@implementation RespringViewController
//This calls the button created in RespringViewController.h
- (IBAction) respring: (id) sender {
setuid(0); system("killall SpringBoard");
}
//This makes the view for the button programmatically
UIButton *button9 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button9 addTarget:self
action:@selector(respring:)
forControlEvents:UIControlEventTouchUpInside];
button9.frame = CGRectMake(96.0, 262.0, 130.0, 37.0);
button9.adjustsImageWhenDisabled = YES;
button9.adjustsImageWhenHighlighted = YES;
button9.alpha = 1.000;
button9.autoresizesSubviews = YES;
button9.autoresizingMask = UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleBottomMargin;
button9.clearsContextBeforeDrawing = YES;
button9.clipsToBounds = NO;
button9.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;
button9.contentMode = UIViewContentModeScaleToFill;
button9.contentStretch = CGRectFromString(@"{{0, 0}, {1, 1}}");
button9.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
button9.enabled = YES;
button9.hidden = NO;
button9.highlighted = NO;
button9.multipleTouchEnabled = NO;
button9.opaque = NO;
button9.reversesTitleShadowWhenHighlighted = NO;
button9.selected = NO;
button9.showsTouchWhenHighlighted = NO;
button9.tag = 0;
button9.titleLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:15.000];
button9.titleLabel.lineBreakMode = UILineBreakModeMiddleTruncation;
button9.titleLabel.shadowOffset = CGSizeMake(0.0, 0.0);
button9.userInteractionEnabled = YES;
[button9 setTitle:NSLocalizedString(@"APPLY SETTINGS", nil) forState:UIControlStateNormal];
[button9 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[button9 setTitleColor:[UIColor colorWithWhite:1.000 alpha:1.000] forState:UIControlStateHighlighted];
[button9 setTitleShadowColor:[UIColor colorWithWhite:0.500 alpha:1.000] forState:UIControlStateNormal];
//Adds the button to the view
[view addSubview:button9];
现在我继续构建它并获得一个名为 Respring.app
在 Respring.app
中有例如这些文件
Info.plist
Icon.png
Respring
我必须将 Respring.app
中的 Respring
重命名为 Respring_
现在我必须将下面的脚本上传到 /path/to/Respring.app/
#!/bin/bash
C=/${0}
C=${C%/*}
declare -a flags
[[ :${DYLD_INSERT_LIBRARIES}: == */MobileSubstrate.dylib: ]] && flags[${#flags[@]}]=--substrate
exec "${C:-.}"/Respring_ "${flags[@]}" -- "$@" 2>>/tmp/Respring.log
并将其命名为Respring
您现在需要使用工具 ldid
对二进制文件进行伪代码签名
可以下载here
在终端中使用以下命令
sudo ldid -S/path/to/Respring.app/Respring_
一定要签署二进制文件而不是脚本
必须有正确的权限才能让脚本以 root 用户身份从终端启动应用程序,您可以运行它
sudo chown 0:0/path/to/Respring.app/Respring*
sudo chmod 0755/path/to/Respring.app/Respring
sudo chmod 4755/path/to/Respring.app/Respring_
现在一切都已准备就绪,您可以启动该应用程序,所有日志现在都将存储在您设备的 /tmp/Respring.log
中,您可以使用按钮重新启动。
关于iphone - 如何重新启动 iDevice?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13279182/
我搜索了重启我的 android 应用程序的替代方法,但我发现重启的唯一方法是使用 Flex 构建. 我可以用 as3 flash 重启我的 android adobe air 应用程序吗?我该怎么做
我有一个学校评估,是为了制作一个 child 的拼写游戏,当玩家单击"is"时,它必须循环/重新启动。到目前为止,当我测试游戏时,询问玩家是否想再次玩的选项/easygui.buttonbox 以
在.yml文件中,我定义了:restart: always。是否可以将此重启创建为--force-recreate标志的等效项? 我的XVFB有问题,标准重启无法解决问题,但通过--force-rec
我正在尝试重新启动 while 循环。我已经声明了 boolean 类型的变量 keepGoing 。如果 int 变量 x 超出窗口,则 keepGoing 更改为 false。然后reset()方
如何使用 Cast SDK 或其他方式让我的应用以官方 Chromecast 应用的方式触发 Chromecast 重启? 如果是“否则”,Google Play 可能会对这种做法不友善吗? 最佳答案
运行/etc/init.d/postgresql restart有没有危险?我们刚刚发生了一些关系“消失”的事件,我运行了上述命令。刚刚被系统管理员骂了一顿,但是他没有解释为什么这是一件坏事。我确实将
是否可以重新启动 while 循环?我目前在 foreach 循环中存在一个 while 循环,并且每次都需要 while 语句从头开始。 $sql = mysqli_query($link, "SE
我有如下倒计时器: - (void)updateCounterLabel:(NSTimer *)theTimer { if(secondsLeft > 0 ){ secondsLeft
就像我在 python 中一样。 choice1 = raw_input('John Blue Green') if choice1 == 'A': print('blah') elif cho
我的游戏在 True 循环中运行一段时间,我希望能够要求用户“再玩一次?”我已经有了用于弹出文本的矩形的代码,但我需要一种方法让用户单击矩形或按 y 表示是,然后代码再次自行运行。 最佳答案 在您的主
我是 nginx 的初学者。我正在使用 Ubuntu 16.04。我按照步骤操作, sudo apt-get 更新。 sudo apt-get install nginx sudo apt-get 升
我需要使用 javascript 重放一个 css 转换。当我重置我的 div 的 css 样式并应用新的过渡时,没有任何反应...... 我认为这两个代码是在同一个执行框架中执行的,并且通过优化,它
所以我有这几行代码: string[] newData = File.ReadAllLines(fileName) int length = newData.Length; for (int i =
所以我有一个计时器,每 5 秒旋转一组图像。因此,我在文档启动时运行它。 $(document).ready(function() { var intervalID=setInterval(funct
好吧,我在重新启动 Apache 服务器时遇到了一些问题。我修改了服务器上的 ulimit 但我无法重新启动 httpd; 我在 CentOS 5.8 x64 上运行服务器. httpd -V 的输出
我在使用 docker 时遇到问题 docker ps不会返回并被卡住。 我发现做 docker service restart 之类的sudo service docker restart (htt
从 .net 代码停止和重新启动 Storyboard的正确方法是什么? 我想 ... myStory.Stop(this); 期望随后调用 .Begin(this);将从零开始从时间线重新开始,但
我有一个带有一些缓存后端的应用程序,我想在重新启动网络服务器时清除缓存。 在网络服务器(重新)启动时是否有 apache 配置指令或任何其他方式来执行 shell 脚本? 谢谢, 菲尔 正如一些答案已
我愿意在我的应用程序中添加一个按钮,单击该按钮将重新启动应用程序。我搜索了谷歌,但发现除了 this one 没有任何帮助.但是这里遵循的程序违反了 Java 的 WORA 概念。 是否还有其他以 J
我们目前遇到间歇性邮件队列中断。我是 seeking diagnostic help in another area . 同时,有没有办法在不重启整个服务的情况下重启CF邮件队列? CF8标准 Win
我是一名优秀的程序员,十分优秀!