Does anyone know how to disable the completion sounds of the SLComposeViewController in iOS?
The sound is played after the user posted a message to e.g. Facebook or Twitter.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can do following:
Make SLComposeViewController not to send tweet when pressed “Send”. And send tweet manually.
1. Walk through all views recursively and find button “Send”
2. Remove all actions for target SLComposeViewController
3. Add own action for UIControlEventTouchUpInside event
4. When “Send” button was pressed use this methods to get text and account (if necessary):
5. Here are this methods:
6. Send tweet manually