| bio | website | angelolloqui.com |
|---|---|---|
| location | Netherlands | |
| age | 28 | |
| visits | member for | 2 years, 10 months |
| seen | 2 hours ago | |
| stats | profile views | 90 |
I am a mobile developer specialized in iOS. I started my mobile career on Mobivery, and now I am leaving in Amsterdam working for Xaton.
|
Apr 14 |
comment |
Are Images assigned in a xib cached? Very interesting answer! However, I think that it does not use imageNamed: because I have a utility for loading h568 images that swizzles the original method and that is not called when the image is set in IB. |
|
Mar 19 |
comment |
Is there an option to implicitly localise labels in Interfacebuilder Using a similar idea I have created an automated tool that runs on awakeFromNib and autotranslates all your IB components. Check it out here: github.com/angelolloqui/AGi18n |
|
Mar 19 |
comment |
Can i link a uilabel to a localizable string in Interface Builder? If you think (like I do) that localizing your IB files with ibtool or by linking your components in code is complex, check out this library: github.com/angelolloqui/AGi18n It just adds some magic to translate all elements on runtime, totally transparent for the developer, and also provides a few commands to extract the labels from your IB files into the Localizable.strings for each language. DISCLAIMER: I am the developer of the library |
|
Mar 19 |
comment |
Can i link a uilabel to a localizable string in Interface Builder? There is a better way. Check out my answer |
|
Mar 19 |
answered | Interface Builder Localization HowTo |
|
Mar 19 |
answered | iPhone: NSLocalizedString in interface builder? |
|
Mar 17 |
awarded | Nice Answer |
|
Mar 12 |
comment |
Localize a view within a storyboard using “User Defined Runtime Attributes” I am exactly at the same point. Have you found anything regarding this? |
|
Mar 11 |
comment |
Show direction inside a mapview in a app without opening iPhone map app @Inoka They are telling you to use native maps. You only need info about the route itself (as a list of points), and then you will be able to draw the route by using polylines on top. However, careful if you use the Google API together with Apple Maps because you will disregard Google's TOS. |
|
Mar 1 |
comment |
NSURLCache returning nil when trying to access cached request from disk Terrible answer! looping 5000 times is not a way to syncrhonize async tasks |
|
Jan 6 |
awarded | Enlightened |
|
Jan 6 |
awarded | Nice Answer |
|
Jan 6 |
awarded | Tenacious |
|
Dec 19 |
answered | Copying selected files to NSArray from another NSArray in ios using pattern matching |
|
Oct 4 |
comment |
ios6 UIImageView - Loading -568h image Regarding the recursive loop. Check it out that I am swizzling the methods, so the recursive loop that you see is not a recursive loop! it is actually the call to the original method. Just include the class in your project and use everything as you used to. No need to change your code because the methods as I explained are swizzled, and it performs better because this only happens on iPhone5 devices. |
|
Oct 4 |
comment |
ios6 UIImageView - Loading -568h image Thanks for the comments. I just updated the code to include #include <objc/runtime.h> instead of the header that was having problems for device. It should work now. |
|
Sep 30 |
comment |
New image name for iPhone 5 As answered there is no suffix that automatically works. There is an alternative solution explained at angelolloqui.com/blog/20-iPhone5-568h-image-loading |
|
Sep 30 |
comment |
Images for iphone 5 retina display Another solution can be found here angelolloqui.com/blog/20-iPhone5-568h-image-loading |
|
Sep 30 |
answered | ios6 UIImageView - Loading -568h image |
|
Sep 28 |
comment |
iPhone 5 - what naming convention the new images have to follow? meccan, you are not creating an infinity loop. The methods are swizzled! the callings to retina4ImageNamed will actually call the original imageNamed method of UIImage. Read about method swizzling if you don't understand it enough! |