jailbreak

iOS make phone call

坚强是说给别人听的谎言 提交于 2019-12-24 00:36:45
问题 I am able to make a phone call by using void CTCallDialWithID(NSString *numberToDial); but my goal is to not have any ui visible and somehow hide the call ui screen. Any ideas how this could be achieved? This should work on Jailbreak devices !(I am not targeting non jailbreak devices ) 来源: https://stackoverflow.com/questions/17441353/ios-make-phone-call

Install iOS app without going through the AppStore [duplicate]

瘦欲@ 提交于 2019-12-23 04:32:04
问题 This question already has an answer here : Install iOS app directly from website - no password, no iTunes, no UDID (1 answer) Closed 4 years ago . I developed an app for iPhone. I want to let my users install my app directly from my site not from app store for non jailbreak devices. http://sibche.ir do that for their app. (If you open sibche.ir from iPhone you can download/install its app from site directly without appstore with download progress in menu! in non jailbreak devices.) How can I

iOS Enterprise Developer Program: how would Apple tell random customers from employees?

情到浓时终转凉″ 提交于 2019-12-23 03:15:54
问题 A Mobile Operator needs to distribute an app which is using private APIs onto non-jailbroken devices. From what I've read everywhere so far, this is not possible. Just out of curiosity: Enterprise Developer Program is reserved for apps that are distributed within the company only and is used by employees or contractors, but how would Apple find out if the user is an employee or just some random iPhone user? Of course, if the number of customers grows big enough, Apple will notice that some

delete message on sqlite. jailbreak iphone

旧巷老猫 提交于 2019-12-23 02:49:16
问题 In my application, i want auto delete SMS messages. for example, when i click a button to trigger a method to execute SQL in sqlite. the SQL is like this: drop trigger if exists delete_message; delete from message; delete from madrid_chat; CREATE TRIGGER if not exists delete_message AFTER DELETE ON message WHEN NOT read(old.flags) BEGIN UPDATE msg_group SET unread_count = (SELECT unread_count FROM msg_group WHERE ROWID = old.group_id) - 1 WHERE ROWID = old.group_id; END it can execute

Errors while running the Code?

南笙酒味 提交于 2019-12-22 13:32:46
问题 I am trying to compile and use the following code in a background daemon on a jailbroken iphone. #import <AudioToolbox/AudioToolbox.h> #import <libkern/OSAtomic.h> //CoreTelephony.framework extern "C" CFStringRef const kCTCallStatusChangeNotification; extern "C" CFStringRef const kCTCallStatus; extern "C" id CTTelephonyCenterGetDefault(); extern "C" void CTTelephonyCenterAddObserver(id ct, void* observer, CFNotificationCallback callBack, CFStringRef name, void *object,

Errors while running the Code?

血红的双手。 提交于 2019-12-22 13:32:11
问题 I am trying to compile and use the following code in a background daemon on a jailbroken iphone. #import <AudioToolbox/AudioToolbox.h> #import <libkern/OSAtomic.h> //CoreTelephony.framework extern "C" CFStringRef const kCTCallStatusChangeNotification; extern "C" CFStringRef const kCTCallStatus; extern "C" id CTTelephonyCenterGetDefault(); extern "C" void CTTelephonyCenterAddObserver(id ct, void* observer, CFNotificationCallback callBack, CFStringRef name, void *object,

add GraphicsServices private framework into IOS

二次信任 提交于 2019-12-22 12:41:45
问题 actually I need to lock my iPhone programmatically, I have searched in the internet, also got some ideas, that is, using GraphicsServices.framework and GSEventLockDevices() method.. here is the thing: how can I add a private framework to my project? I knew it's jailbreaking, but no problem. Could anyone help me to add a private framework to Xcode and lock the device programmatically? 回答1: If you missed to import certain framework means, you may get like this kind of error.. When I met like

MobileSubstrate: MSHookFunction example

﹥>﹥吖頭↗ 提交于 2019-12-21 02:43:32
问题 I am trying to write a MobileSubstrate plugin which hooks into a C-method. I tried to edit the famous "ExampleHook", by just writing a demo MSHook and hook it in the Initialize method. This is probably too optimistic and it doesn't work. But I cannot find anywhere a simple example of a MSHookFunction(). There is barely information about this on the Internet. It might be possible I misunderstood the whole concept of MSHookFunction. Please, can anybody help me out with a little example code? I

Jailcoder with SDK 6.0

主宰稳场 提交于 2019-12-20 15:36:06
问题 I am new to iOS . I was installing latest XCode with SDK 6.0 in it. I have been successfully testing my app developed using SDK 6.0 on simulator. Now i want to test it on real device without developer program account. To do that, i use Jailcoder . I have an iPhone 3GS , with AppSync 5.0+ installed. I have tried "Quick XCode Patch" and "Patch My Project" . However i still get signing error. It said, CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 6.0' Seems

How to make Notification Center Widgets (iOS 5)

狂风中的少年 提交于 2019-12-20 10:55:32
问题 iOS 5 introduced Notification Center Widgets and I would like to experiment with those widgets and make custom ones (with a Jailbroken device). I couldn't quite figure out how to make such a widget. The Widgets (WeeApps) are bundles stored in /System/Library/WeeAppPlugins. It would be great if anyone has already writren a guide or could share how the principal class of a WeeApp has to look like. Ideal would be to have a WeeApp NIC template for theos :) Note: This question is regarding so