MobbSign Additional Configuration
This page contains some additional configuration for MobbSign.
Signature configuration
You can configure some details of the signature process:
Indicates an image to be drawn within the signature as a stamp.
@property (nonatomic, strong) UIImage *stampImage;Indicates a key-value pair field to be written in the non-visible part of the signature field.
- (void)addCustomField:(NSString*)key value:(NSString*)value;Indicates a key-value pair field to be written in the signed information of the signature field.
- (void)addSignedCustomField:(NSString*)key value:(NSString*)value;
Editable document fields edition
You can get and set editable fields values on editable documents:
(BOOL)setValue:(NSString*)value toField:(NSString*)fieldName; Indicates the value to be set in the field with the given name.
(NSString*)getValueOfField:(NSString*)fieldName; Returns the value of the field with the given name.
(NSDictionary*)getFields; Returns a field name - field value pairs dictionary with all editable fields.
Document edition
(NSInteger)addNewPage; Adds a new page at the end of the document.
(BOOL)addImageToPage:(MobbSignImageConfiguration *)imageConfiguration; Adds an image in a page.
