Custom Vibrations in iOS7 [duplicate] - ios

This question already has answers here:
Are there APIs for custom vibrations in iOS?
(2 answers)
Closed 8 years ago.
I've been looking around the web trying to see if anyone has been able to do custom vibration timing. I found information on iOS5 but it was only doable with non app store approved methods.
Is there any API's in iOS7 that will let me do this?

There are no new iOS 7 APIs for this. The private APIs you mentioned remain the only option.

Related

Access to iOS Messages via Swift

Does apple gives access to iOS Messages using swift? If it does are we allowed to delete messages? I searched this and all answers i found is 5 years ago.
Nothing has changed in the last 5 years - the answer is still No.

How to listen for incoming sms event in iOS [duplicate]

This question already has an answer here:
can my app knows that I received a sms on my iphone using Notification Center
(1 answer)
Closed 8 years ago.
Is there any example for ios that I can add observer so that I can develop an app that is aware of incoming sms/mms/email event?
There is no public API for that in iOS but there are private API for that. If you use private API then your app will not get approved by Apple.
If you want to use private API then here is one useful solution for that. http://tech.ruimaninfo.com/?p=83
Solution is bit old so you will need to check if it works in current iOS versions. It was working in iOS 6.

can I send a user to the iPhone's lock-screen? [duplicate]

This question already has answers here:
Programmatically lock and unlock iPhone screen
(8 answers)
Closed 8 years ago.
I've seen an app that activates the lock-screen after showing a local notification (so the user has to enter the passcode).
... and now I wonder how they did this, since I need this kind of functionality for one of my projects. It might even pass Apple's review process because it does make sense for this app... (and, yes, I'm aware that Apple might reject it, but I'd like to give it a shot).
How would I do this???
I don't believe it is possible as the framework that handles this is private.
iOS 8.1 does not offer API to do this. Most likely you have seen an App implementing its own lock screen. You will need to implement something similar.
You can find examples on GitHub, e.g. https://github.com/venmo/VENTouchLock

Is it possible to answer a call programmatically in iOS? [duplicate]

This question already has an answer here:
Programmatically answer an incoming phone call on iPhone
(1 answer)
Closed 9 years ago.
Is it possible to programmatically answer a call in iPhone? I have already googled about this and found that iOS SDK does not support such feature. But I found an answering machine app in Appstore.
https://itunes.apple.com/in/app/prank-answering-machine-free/id508457142?mt=8
Please help me out.
No this is not possible, the iOS SDK does not allow any interaction with the phone.app.
Also the app you have found is a prank app, one that you start if you receive a call and the play back one the messages from the app.
No, that is not possible. The CoreTelephony framework lets your application receive notifications if there is any change in the call state, but there is no way to answer it.
The app that you mentioned does not say anything about answering a call, from what I can see.
I would say it depends. If you want to make a app and publish it in app store, its not possible. However if you want don't want to publish on app store and willing to use private api, then its possible. Refer this answer.

Is it a UIScrollView for facebook when switch view? [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
What's the best way to develop a sideswipe menu like the one in Facebook's new iOS app?
I also see it at path http://itunes.apple.com/us/app/path/id403639508?mt=8, so think is from apple official sdk, but do not know what it is ? Thanks
I believe that the Facebook app uses the Master Detail Xcode template, but if you are planning on creating an app similar in design I would recommend using the MFSideMenu iOS component.

Resources