Re: UILabel is maiming my Character

2015-10-15 Thread Alex Zavatone
Gerriet, what I noticed at the time of writing those methods was that there was no predefined way to create superscripted text for NSAttributedText. What my premise was to simulate/create superscripted text was to raise the baseline a % of the text's font size and reduce the font size used for t

App Transport Security has blocked a cleartext HTTP for a local IP

2015-10-15 Thread Devarshi Kulshreshtha
Our webservices are hosted in some local IP, to bypass the App Transport Security I added this as dictionary for NSAppTransportSecurity key in my info.plist file: NSAllowsArbitraryLoads NSExceptionDomains localhost NSExceptionAllowsInsecureHTTPLoads 10.32.27.12 NSExceptionAllowsInsecureHTT

Re: App Transport Security has blocked a cleartext HTTP for a local IP

2015-10-15 Thread Marek Hrušovský
I read on some blogposts that ios9 GM did not support IP addresses for ATS. Do not know if this has changed. On Thu, Oct 15, 2015 at 9:06 PM, Devarshi Kulshreshtha < devarshi.bluec...@gmail.com> wrote: > Our webservices are hosted in some local IP, to bypass the App Transport > Security I added t

Re: App Transport Security has blocked a cleartext HTTP for a local IP

2015-10-15 Thread Jens Alfke
What’s the exact URL that failed to load? —Jens ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/

Re: App Transport Security has blocked a cleartext HTTP for a local IP

2015-10-15 Thread Jim Adams
They added a check for http vs https. You have to add an entry to the plist to allow that kind of access… > On Oct 15, 2015, at 4:29 PM, Jens Alfke wrote: > > What’s the exact URL that failed to load? > > —Jens > ___ > > Cocoa-dev mailing list (Coco

Re: App Transport Security has blocked a cleartext HTTP for a local IP

2015-10-15 Thread Alex Zavatone
What happens if you only use this: NSAllowsArbitraryLoads ?? On Oct 15, 2015, at 3:56 PM, Marek Hrušovský wrote: > I read on some blogposts that ios9 GM did not support IP addresses for ATS. > Do not know if this has changed. > > On Thu, Oct 15, 2015 at 9:06 PM, Devarshi Kulshreshtha < > deva