iOS Module SDK
0.97
Tools for building CampusLife modules
|
#import <D2LModuleScreenshotAssistant.h>
Public Member Functions | |
(void) | - takeScreenshot |
(void) | - takeScreenshotAfterDelay:target:action: |
(void) | - finish |
The screenshot assistant is provided for use by modules that want to manually control how automatic screenshots of the module are generated. The assistant object is provided to the module through the takeScreenshots: method.
- (void) finish |
Call this method once your module has finished taking screenshots.
- (void) takeScreenshot |
Call this method to generate a screenshot of your module's current state.
- (void) takeScreenshotAfterDelay: | (NSTimeInterval) | delay | |
target: | (id) | target | |
action: | (SEL) | action | |
Call this method to generate a screenshot of your module after a given time period, then call a notification method.
delay | - The time to wait after calling the method to take a screenshot. |
target | - The object to notify after the screenshot is taken. |
action | - The method to call on the object after the screenshot is taken. |