| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 6 months |
| seen | 1 hour ago | |
| stats | profile views | 45 |
|
Jun 14 |
comment |
What is the default height of UITableViewCell? This is problematic with autolayout |
|
Jun 10 |
comment |
Custom UISegmentedControl This will also lose the border drawn around the segmented control. Any way to keep that? |
|
Jun 10 |
comment |
Custom UISegmentedControl This will lose the rounded corners, any way to keep them? |
|
Jun 10 |
comment |
removing the white gradient from UISegmentedControl This seems to remove the rounded corners on the segmented control. Is there any way to keep them? |
|
Jun 6 |
answered | IOS: hide keyboard on touch UITableView |
|
Jun 6 |
comment |
IOS: hide keyboard on touch UITableView Lookup touchesBegan method |
|
Jun 6 |
comment |
IOS: hide keyboard on touch UITableView Have you set the tview delegate to your view controller? tview.delegate = self and make sure to implement the UITextViewDelegate in the header file |
|
Jun 4 |
answered | Get UILabel font pointsize after minimumFontSize |
|
Jun 4 |
comment |
Get UILabel font pointsize after minimumFontSize Seems to work really well. Thank you! |
|
Jun 4 |
asked | Get UILabel font pointsize after minimumFontSize |
|
May 16 |
comment |
Is there some way to determine mobile operation system (iOS,Android, etc.) from the http request to the server? Is there a reason why you "don't like such a solution"? |
|
May 16 |
answered | iOS Uninstall/Installing - Application strange behavier |
|
May 7 |
comment |
ARC not releasing live bytes @MarkM I was retaining a delegate so YES THAT DEFINITELY HELPED. However I still have an issue with the live bytes increasing (although much smaller now). I'd still like to know the answer to my above question |
|
May 7 |
comment |
ARC not releasing live bytes Ok perhaps I have a retain cycle. Lets say I have 2 viewControllers that I push to (A and B), a custom class called "Person", and I have a property (strong) Person *person on class A. Now I want to pass this person to class B who also has a property (strong) Person *person. So if I set class A's person equal to class B's person in the prepareForSegue method, will this cause a retain cycle? (The person class does not contain any delegates, only attributes like name, address, etc which are of type NSString)? |
|
May 7 |
comment |
ARC not releasing live bytes @MarkM yes I use instruments, that's how I see the live bytes never release from pushing and popping. No leaks ever occur, just a continual, gradual incline of live bytes |
|
May 7 |
comment |
ARC not releasing live bytes @MarkM No there's not a reason I don't wish to do that. I just thought with ARC I didn't have to. Would you suggest setting all properties to nil then in viewDidUnload (or maybe viewDidDisappear)? |
|
May 7 |
comment |
ARC not releasing live bytes for example if I have an array of data in my class here's how I do it: @property(strong) NSMutableArray *arrayOfData. I'll initialize and add to it but thats it. I never set it to nil or anything like that when the view disappears |
|
May 7 |
asked | ARC not releasing live bytes |
|
Apr 29 |
awarded | Good Answer |
|
Apr 16 |
comment |
Google App Engine Datastore Modeling yes I can use the ID fields but in order to link a comment to a post, I'll still need to explicitly declare a postId field in the comment entity (which is the key associated with the post entity). Do you concur? |