968 reputation
38
bio website
location
age
visits member for 1 year, 1 month
seen 13 hours ago
stats profile views 39

I'm a web developer and also iOS programmer


May
2
comment Use TableView or TableViewController when I have Custom TableViewCell and want to do MVC
My source: blog.teamtreehouse.com/…
May
2
comment Use TableView or TableViewController when I have Custom TableViewCell and want to do MVC
Agree with you about the first part, I'm gonna edit it. But about UIViewController I disagree. You can do the same things with UIViewController by using TableView's delegate, without UITableViewController.
Apr
25
comment How to change font color of UISegmentedControl
[UIFont fontWithName:@"HelveticaNeue" size:17.0f]
Apr
21
comment How to switch Views in tabbed app on iOS6?
Thanks, I'll keep it in mind :)
Apr
21
comment How to switch Views in tabbed app on iOS6?
Tabbed application doesn't create two views only, it creates two UIVIewControllers that are being managed by UITabBarController
Apr
18
comment Display a rendered icon in UImage
Take a look at this answer, maybe it will help you. [stackoverflow.com/questions/5541457/… [1]: stackoverflow.com/questions/5541457/…
Apr
18
comment populating a tableview with nsmutabledata received from a webservice
What object types the array contains? It will work only if the types are NSString. Notice that you don't reuse your cells with this format cell%i. Because the identifier is never the same.
Apr
17
comment Remove selection gray shadow from html input on iOS
Did you try -webkit-appearance:none?
Apr
15
comment IPhone crashes when capturing multiple images and also slows down
It's up to you :) But the class method is for resizing images to smaller size. It actually resizes them in size and not only showing in smaller aspect.
Apr
15
comment IPhone crashes when capturing multiple images and also slows down
Yes.. see my answer below
Apr
15
comment IPhone crashes when capturing multiple images and also slows down
That's the problem. You need to convert them and reduce the size of the images on the screen. Uncompressed images take amount of something like 2.5MB each one, that sit in memory.
Apr
15
comment IPhone crashes when capturing multiple images and also slows down
Do you display the images on the screen after capturing them?
Apr
7
comment sending data from DetailViewController to MasterViewController
You should use protocol in detail view and set master as delegate. See Utility app for example.
Mar
18
comment How to modify SELECT tag's default highlight behaviour in IE and Opera?
The input element is unnecessary.. Just blur the $('select').
Mar
18
comment NSTableView Header gets blurred when scrolling
Sounds like a bug in Cocoa
Mar
4
comment How to convert Vector Layer coordinates into Map Latitude and Longitude in Openlayers
This code caused me some bug, the popup was opening not on the marker. Instead this worked perfectly: OpenLayers.Layer.SphericalMercator.inverseMercator(lonlat.lon, lonlat.lat);
Feb
28
comment iOS UIWebView setUserInteractionEnabled to NO does not work for iOS 6
If you want to use custom size of cell, you'll need to resize the webview in tableView willDisplayCell method.
Feb
28
comment iOS UIWebView setUserInteractionEnabled to NO does not work for iOS 6
There is no need in subclassing..
Feb
28
comment iOS UIWebView setUserInteractionEnabled to NO does not work for iOS 6
When you build your cells in tableView datasource method, where do you append it as subview?
Feb
28
comment iOS UIWebView setUserInteractionEnabled to NO does not work for iOS 6
Do you add the webView to cell or cell.contentView?