Very Important Setting for iOS 9
To use SkyEpub SDK in iOS 9, New Keys & Values should be Added to Info.plist.
In Advanced demo, open SkyDemo-info.plist.
Add Following Key & Value into plist.
NSAppTransportSecurity Dictionary
NSAllowsArbitraryLoads Boolean YES as a child of NSAppTransportSecurity Dictionary.
In Advanced Demo, Custom Component “NoteView” seems to conflict “iOS 9 beta3”
#1. BookViewController.h
locate
NoteView* tv;
change it to
UITextView *tv;
#2 BookViewController.m
locate
tv = [[NoteView alloc]initWithFrame:CGRectMake(10,10,260,210)];
replace this line with
tv = [[UITextView alloc]initWithFrame:CGRectMake(10,10,260,210)];