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

I'm a web developer and also iOS programmer


Feb
6
comment Printing parameters in win32 console application
I didn't say it prints "param". I used word param as global parameter that I input. If I run the program with "-v" it prints "-v". So this part works as expected.
Feb
6
comment Printing parameters in win32 console application
There is a problem with _TCHAR* argv[]. Changed it to const char* and now it cout normally.
Feb
6
revised Printing parameters in win32 console application
deleted 7 characters in body
Feb
6
asked Printing parameters in win32 console application
Feb
6
comment Wrong height of UITableViewCell
Now I remember.. I used to have the same issue with grouped table view. The first cell was higher than others. I solved it with hardcode.. In heightForRowAtIndexPath {if(indexPath.row==0)return cellHeight - 1}
Feb
6
answered How to dynamically position a UIDatePicker control for iPhone
Feb
6
comment Wrong height of UITableViewCell
Do you count the cell separator line? 48 + 1 = 49
Feb
4
answered Wrong urlencoding
Jan
30
answered UISegmentControl as NavigationController
Jan
30
comment JSON Arrays and Sorting
Why would you do synchronous request and not asynchronous?
Jan
29
comment Wich pattern to update interface using background thread?
thegeekstuff.com/2012/05/c-mutex-examples
Jan
29
answered Xcode: Passing label to second view?
Jan
24
comment UITableView delete section - header stays visible
Did you try setting number of sections to 1 in delegate method, after removing section?
Jan
21
comment Get data from a website into a Tableview
Do you use webView component, or you want to add data from external safari browser?
Jan
21
comment Parsing XML - loading images from URLs
If you want to modify string, you can use NSMutableString. Or create a new [NSString stringWithFormat:@"http://%@", oldString]
Jan
21
revised Parsing XML - loading images from URLs
added 3 characters in body
Jan
21
answered Parsing XML - loading images from URLs
Jan
21
comment how to delete row in uitableview when click on button
I suggest you to go to iOS documentation and read more about use of arrays. The flow is simple: you add to array A the index paths you want to delete, then in tableview you remove those rows. In array B (datasource) you remove the index.
Jan
21
comment how to delete row in uitableview when click on button
myarray = [NSMutableArray array]
Jan
21
comment how to delete row in uitableview when click on button
It has to be NSMutableArray instead of NSArray