Questions tagged [iphone-privateapi]

A question with this tag is about non-public (aka private) iOS APIs. Apple will reject apps that use non-public APIs, but they can be distributed using ad-hoc or enterprise distribution (on jailed and jailbroken devices), or through jailbreaks. The main difference from software development standpoint of iOS private API that such APIs aren't declared in header files. As result extra steps are required to figure out API signature for its usage.

Questions with this tag discuss which private API can be used to accomplish different tasks, what are private API's signatures, runtime restrictions for usage of private API and so on.

The words "private API" in a question doesn't automatically make it suitable for this tag. As example, questions regarding Apple policies (why something was rejected or how do they know whether app uses some private API) aren't good fit for this tag. First of all, it's not purely software development question (it's more legal, tools questions). Second, all questions with this tag imply that it will be used in application which won't be submitted to Apple.

508 questions
0
votes
1 answer

Send an email from iOS application without using MFMailCompose UI

Is there a way to send an email from iOS application without using MFMailCompose UI. I need to send an email with a small (1.5mb) video but using a custom UI. This is not an app that is going to end up in app store because it's going to be in a…
hdsenevi
  • 953
  • 2
  • 14
  • 27
0
votes
0 answers

Access to stored APNS Notifications

Is it possible in iOS to access the stored APNS Notifications, regarding to my app, on runtime? I know, I should use the application:didFinishLaunchingWithOptions: and/or the application:didReceiveRemoteNotification methods, but I want to read out…
0
votes
2 answers

Is there any Private API that can change all system Font in IOS?

I want to know is there any Font Private API or Framework that can change or replace font for all entire iOS systems font like safari , mail etc...? It's fine for review because i am not upload to App Store. I just want to use only myself.
Fire Fist
  • 7,032
  • 12
  • 63
  • 109
0
votes
1 answer

About Capturing Result of SMS on iOS

If I send a message to number 123(or any number that doesn't exist). How to get the feedback-Send failed via my app? My device is JB and I just use the app to test not for appstore.
Darth L
  • 11
  • 1
0
votes
0 answers

How to get the result of SMS on iOS

I used the "MFMessageComposeViewController" to send SMS and used the method -"messageComposeViewController: didFinishWithResult:" to get the result .However,the result is ambiguous.Because I always get "MessageComposeResultSent" as long as I click…
Darth L
  • 11
  • 1
0
votes
1 answer

Where I can find an ipa file containing private API?

I want to have an ipa file generated with Private API to test whether private-api identifying tool works or not. Could someone tell me how I can find such file? Thanks.
0
votes
1 answer

Blank SMS appear on MobileSMS app

I'm building for a jail-broken device and I want to block incoming messages. So I blocked it and delete it, but when I open MobileSMS ("Messages") app or biteSMS app, the message that was blocked is empty but the Sender still appears. How can I…
user1561904
  • 243
  • 3
  • 11
0
votes
1 answer

Is it possible to get carrier time using private or public api on iPhone SDK?

Is it possible to get the cell network time using public or private API?
Maxm007
  • 1,190
  • 2
  • 13
  • 21
0
votes
3 answers

Handling Touch Events on iOS devices

I am exploring the way touch events are handled on iOS devices. I referred the book: iOS Open Application Development. Working on that, I am overriding the mouseDown, mouseUp methods and simply displaying the co-ordinates in an alert box. However,…
0
votes
1 answer

How are headers and functions obtained from iOS private api binaries ? How to reverse engineer an app?

I have read that class-dump utility is used to dump headers from iphone private api's. However, it does work only for objective-c frameworks. I wanted to know how it works for frameworks written in C, example - IOSurface, IOMobileFramebuffer etc.…
Hrishikesh_Pardeshi
  • 995
  • 4
  • 19
  • 45
0
votes
2 answers

Creating an image out of the ios surface and saving it

I am trying to acquire the surface associated with the main screen of the ios device, create an image out of it and save it. This is in relevance to this question - Taking Screenshots from iOS app - emulating Display recorder (query on the…
Hrishikesh_Pardeshi
  • 995
  • 4
  • 19
  • 45
0
votes
1 answer

How to implement auto-answer on iPhone?

Apparently, there are already some applications implementing auto-answer on iphone: http://www.iclarified.com/entry/index.php?enid=20776 How is this done? How can I automatically answer calls programmatically? (private APIs ok)
Pedro Rolo
  • 28,273
  • 12
  • 60
  • 94
0
votes
1 answer

is there a private API for sending HCI command under iOS

Is there a way to send HCI command under iOS (even using private API) ? Thanks.
AP.
  • 5,205
  • 7
  • 50
  • 94
0
votes
1 answer

Is the a good way to find server side of mach_msg?

I am disassembling a lot of iOS operation system code now (frameworks, system daemons). One of the common methods to do a system call is usage of mach_msg. So, I can see on the client side, how mach_msg is constructed. Quite often I know a system…
Victor Ronin
  • 22,758
  • 18
  • 92
  • 184
0
votes
1 answer

Rotating a view in objective-c

I am trying to make the multitasking switcher open in landscape mode all the time... even when the phone is being held in portrait... Any ideas? The class is "SBAppSwitcherController" and I'm calling the method "viewDidAppear"
Sirex_iOS
  • 1
  • 1
1 2 3
33
34