Home

Awesome

ARSpeechActivity

Twitter GitHub Issues Version License Platform Analytics

ARSpeechActivity is a UIActivity subclass that provides a "Read" action to a UIActivityViewController.

ARSpeechActivity screenshot

Requirements

Installation

Add the ARSpeechActivity subfolder to your project. Add the AVFoundation framework to your proyect.

Usage

(See example Xcode project)

Simply alloc/init an instance of ARSpeechActivity and pass that object into the applicationActivities array when creating a UIActivityViewController.

NSString *textToRead = @"Hello World!";
ARSpeechActivity *speechActivity = [[ARSpeechActivity alloc] init];
UIActivityViewController *activityViewController = [[UIActivityViewController alloc] initWithActivityItems:@[textToRead] applicationActivities:@[speechActivity]];
	[self presentViewController:activityViewController animated:YES completion:nil];

Note that you can include the activity in any UIActivityViewController and it will only be shown to the user if there is a NSString in the activity items.