SCSCasePublisherViewController
@interface SCSCasePublisherViewController : UIViewController
View controller that lets users create a case and submit it to Service Cloud.
This controller assumes that it will be presented within an instance of UINavigationController
.
If you aren’t pushing this controller onto a navigation controller stack, present it within
a new navigation controller instance.
SCSCasePublisherViewController *caseController = [SCSCasePublisherViewController new];
UINavigationController *navigationController = [[UINavigationController alloc]
initWithRootViewController:caseController];
[self presentViewController:navigationController animated:YES completion:nil];
-
Delegate for the case publisher view controller.
Declaration
Objective-C
@property (nonatomic, weak, nullable) NSObject<SCSCasePublisherViewControllerDelegate> *delegate;
Swift
weak var delegate: SCSCasePublisherViewControllerDelegate? { get set }