iPhone and iPad development
84
Tips, Libs and more on iPhone and iPad development and ios
Curated by Vincent Demay
Follow
Scooped by Vincent Demay onto iPhone and iPad development
Scoop.it!

TSMiniWebBrowser : another in app mini browser

TSMiniWebBrowser : another in app mini browser | iPhone and iPad development | Scoop.it

There are already some solutions to this problem out there but non of them offers this features. First, this solution solves the well-known UIWebView bug that causes erratic behavior when combining "zooming operations" and "landscape orientation". Moreover, the solution presented is highly customizable

Vincent Demay's insight:

✔Sources: https://github.com/tonisalae/TSMiniWebBrowser

ComplexInsight's curator insight, February 12, 12:30 PM

If you need to embed a browser into your iphone or ipad app this is a useful solution.

Your new post is loading...
Scooped by Vincent Demay
Scoop.it!

ColorUtils - category for a better color management in your app

ColorUtils is a category on UIColor that extends it with some commonly needed features that were left out of the standard API.


UIColor is a thin wrapper around CGColor, which supports a wide variety of different formats, making it very flexible. This flexibility seems to come at a bit of a cost to usability for common tasks however. For example, it's non-trivial to access the red, green and blue components of an RGB color, and it is difficult to compare colors because [UIColor blackColor] is treated as different from[UIColor colorWithRed:0 green:0 blue:0 alpha:1] even though they are identical on screen. ColorUtils makes this tasks easy.


Another common problem is that RGBA UIColors are specified using four floating point values in the range 0 to 1, but virtually all graphics software treats colors as having integer components in the range 0 - 255, often represented as a hexadecimal string. ColorUtils lets you specify colors as hexadecimals so you can copy and paste values directly from PhotoShop.

Vincent Demay's insight:

✔Sourceshttps://github.com/nicklockwood/ColorUtils

No comment yet.