- 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/
我想知道 iDevice 中的哪个 plist 存储了 idevice 的语言? 我想通过更改 plist 来更改 ipad 的语言。 你知道它是哪个plist吗? 非常感谢! 祝你有美好的一天:)
伙计们! 需要一些紧急的见解。我的问题是,即使 iPhone 4/4S 和 iPod 4 上的测试可以正常旋转,这里的代码如下: - (void)initNotifications { [[N
我有一个 iOS 应用程序向 PHP Web 服务器发送 NSURLRequest/NSURLConnections 。我如何检测向我的 PHP 网络服务器发送 NSURLRequest/NSURLC
有没有办法在不读取用户代理(很容易被欺骗)的情况下检测用户是否正在使用 iDevice?我想要一个移动版本(没有验证码),但桌面版本会有验证码,所以我想使用 UA 检查以外的任何其他检查方法。 最佳答
是否可以在应用程序内检查附近是否有其他设备正在运行该应用程序? 例如,设备 A 启动应用程序。设备 B 也启动该应用程序。当他们在附近时,会弹出通知。 我知道可以检查两个 GPS 坐标之间的范围。但我
我正在尝试制作一个应用程序来重新启动和重启任何 iDevice。我的代码在 iOS 模拟器中运行良好,但在我的 iDevice 上没有任何反应(是的,它是越狱的)。 这是我的呼吸代码:
我正在开发一个从 iDevice 的相机捕获图像并将其上传到网络服务的应用程序。 没问题,除了设备的摄像头外,一切正常。设备的摄像头快把我逼疯了。我正在使用下面的代码来允许用户捕获图像。有时相机会显示
我的最终目标是在 iDevices 上查看我的网站,点击图像链接后,全屏播放视频,视频结束后重定向到另一个网页。我对任何能够实现我的目标的解决方案持开放态度,即使这意味着废弃我已有的代码。 这是我迄今
如何(以编程方式)检查用户是否已在 Mail.app 中设置电子邮件帐户。它似乎导致了崩溃。 干杯 最佳答案 if ([MFMailComposeViewController canSendMail]
Apple 建议不要搜索硬件版本,而是搜索您感兴趣的特定功能。 那么我如何检测设备上是否有前置摄像头以便能够禁用某些功能? [UIImagePickerController isSourceTypeA
我有AVAudioPlayer和app。我想将耳机按钮的功能从“增大音量/减小音量”更改为“播放暂停/向前播放”。可能吗? 寻找任何帮助 最佳答案 Apple Documented API无法执行您要
我正在开发一个用于数学类(class)和练习的应用程序... 我只编写了 MainMenu 的代码,但遇到了问题。确实,我想知道目前设置我的东西的方向。 但是,我尝试了不同的方法来了解当前的方向,但没
我想知道是否可以通过命令行(最好通过 bundle 名称)在越狱的 iPhone/iPad 上卸载应用程序。ideviceinstaller 可以做到这一点(即使在未越狱的设备上),但由于我需要的解决
我注意到一个奇怪的“bug”,为ios7开发一个应用程序。在 UITextFields 设置键盘样式后,如下所示: MyUITextField.keyboardType = UIKeyboardTyp
我已经广泛搜索了这个问题的答案。我一直无法在任何地方找到答案,所以我求助于堆栈溢出,希望你能给我一个答案。我即将向应用程序商店提交我的第一个应用程序。我必须让应用程序在所有 iDevices(iPad
当我将 iPhone 插入计算机时,我可以访问手机上的应用程序文件夹结构吗?以编程方式或手动使用不涉及越狱的工具。 最佳答案 你试过了吗iExplorer ?看看能不能满足你的要求(不需要越狱)。 关
例如,我通常在我的 View Controller 中以静态常量格式声明矩形和颜色。 (这些是编译时间) #import "something.h" static const CGRect someR
考虑到 iDevices 家族正在扩大,我想这是一个比我更多的人开始遇到的问题: 当您编写面向多个 iDevices 的应用程序时,您如何有效地管理资源,例如 3D 模型、纹理、全屏图像等? 基本上这
我想在真实设备(越狱)上测试我的应用。 但是,我没有开发者帐户。 如何在设备上安装和测试我的应用? 请给我建议。 最佳答案 越狱设备不需要开发者帐户。 只需从您的 Mac 下载到您的设备并测试您的应用
这个问题在这里已经有了答案: 关闭 10 年前。
我是一名优秀的程序员,十分优秀!