Gerar macros em formato de bookmarklet

javascript:(function(){var formRecord = {},prefix = “javascript:(function(){“,postfix = “})();”,setFormRecord=function(){var elValue = “”;var tag = $(this).prop(“tagName”);if ( “SELECT” === tag || “INPUT” === tag){formRecord[$(this).attr(“id”)] = $(this).val();}else if ( “FIELDSET” === tag){$(this).find(“input[type=radio]”).each(function(){formRecord[$(this).attr(“id”)] = …

Continuar lendo

RBG no iOS da maneira correta

#define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0] Pessoas normais pensam em códigos de cores hexadecimais (assim como o photoshop). Essa …

Continuar lendo