616 reputation
210
bio website buuna.com
location Sydney, Australia
age 31
visits member for 1 year
seen 9 hours ago
stats profile views 13

May
11
awarded  Yearling
May
9
awarded  Tenacious
May
1
awarded  Custodian
May
1
answered custom uitableview with a tab bar on top ios
May
1
revised iOS play movie in CGRect
Updated code, fixed code for setting contain view's frame.
May
1
revised iOS play movie in CGRect
added 28 characters in body
May
1
answered iOS play movie in CGRect
Apr
30
comment Xcode stuck on “Your Application is Being Uploaded”?
Have you tried deleting derived data? Go to "Organizer->Projects", click on the project in question then click on the "Delete..." button next to Derived Data. Also, try restarting the computer.
Apr
30
comment text alignment drawInRect Not Working
You should be using NSLineBreakByWordWrapping and NSTextAlignmentRight as the UI equivalents have been deprecated. They map to the same thing so it shouldn't make a difference though.
Apr
29
answered Customizing UIBarButtonItems in various parts of applications (background image and shape)
Apr
29
comment XCode warning when using deprecated setStatusBarHidden method
Don't forget to put #pragma clang diagnostic pop after the deprecated code to turn warnings back on
Apr
22
awarded  Informed
Apr
20
revised how to add an action on UITextField return key?
edited tags
Mar
5
awarded  Caucus
Sep
10
comment User default change notification with an in-app purchase
The '.' will not make a difference as they are just part of the string. All I can suggest is that you use NSLog to print out productIdentifier to make absolutely sure it is the same as PHKeyIAPFeature .
Sep
5
comment Objective-C numberOfSectionsInTableView - Query to return sections alphabetically
@user1542684 okay then, now put that line back and remove the if (schoolHouse.schoolHouseName.length == 0) continue; line. Does it crash now?
Sep
5
answered ContentOffset and back to Top issue
Sep
5
comment Objective-C numberOfSectionsInTableView - Query to return sections alphabetically
If you remove the line if (![schoolHouse isKindOfClass:[SchoolHouse class]]) continue; does it crash?
Sep
4
revised UITableView correcting scroll position after device rotation
added 141 characters in body
Sep
4
comment UITableView correcting scroll position after device rotation
Rotating the device shouldn't change the cell position, it's only changing because you're changing the font size. At any method where you're capturing a change of orientation you can add the three lines to store top cell, change font size the restore top cell and it should work fine. (Edited answer to reflect this)