Version 6.9.3.68951 Changelog (December 18th, 2018)

  • Version: 6.9.3.68951
  • Release Date: December 18th, 2018
  • Built with Xcode 10.1 (10B61)

New

  • A number of new APIs allow for UI customization without modifying the source code of the open source Tools UI framework.
  • The annotation permission API has been improved so that code is less complex and supports code completion. (See the API differences section below).
  • The annotation toolbar now allows changing an annotation's style before it is created:
Apryse Docs Image
  • The annotation style picker shows as a popover on iPads and large iPhones in landscape:
Apryse Docs Image
  • A new sample, Showcase, demonstrates a number of features of the Apryse SDK.
Apryse Docs Image

API differences

  • Customizing annotation permissions has changed. The new APIs are cleaner and easier to write as they employ properties with full code completion, vs. text strings that required consulting documentation. For example:

Version 6.9.3+ (new method):

sh

1toolManager.inkAnnotationPermission.canCreate = false
2toolManager.inkAnnotationPermission.canEdit = false
3toolManager.highlightAnnotationPermission.canCreate = false
4toolManager.highlightAnnotationPermission.canEdit = false

Version 6.8.7-6.9.2 (previous method):

sh

1toolManager.configure(with: ToolManagerConfiguration { builder in
2 builder.annotPermissions = [
3 .ink : [
4 .canCreate : false,
5 .canEdit : false,
6 ],
7 .highlight: [
8 .canCreate: false,
9 .canEdit: false,
10 ],
11 ]
12})

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales