| bio | website | |
|---|---|---|
| location | Kentucky | |
| age | ||
| visits | member for | 1 year, 3 months |
| seen | 48 mins ago | |
| stats | profile views | 63 |
|
May 19 |
answered | When setting the frame of a UILabel, is it possible to set it to the vertical and horizontal center of the superview in code? |
|
May 7 |
comment |
How to Schedule Method call in Objective C Before turning to NSInvocation I would recommend using dispatch_after. Just start typing it in Xcode and accept the autocompletion, and put your code to be executed after a delay in the block. |
|
May 2 |
awarded | Popular Question |
|
Apr 24 |
comment |
Tricks for improving iPhone UITableView scrolling performance? Nibs are equivalent in speed, or a little faster based on Cocoa with Love research. cocoawithlove.com/2010/03/… |
|
Apr 22 |
asked | Profiling I/O on iOS “No such file or directory” looking for extensions — should I be worried? |
|
Apr 18 |
comment |
Under what conditions might instancesRespondToSelector: return true, but performSelector: throw an exception So wouldn't -all_load not being needed anymore depend on what version of Xcode they were running? I have heard of some people on crazy old versions of Xcode. |
|
Apr 18 |
comment |
Under what conditions might instancesRespondToSelector: return true, but performSelector: throw an exception Eh, forget that theory. This seems promising: developer.apple.com/library/mac/#qa/qa2006/qa1490.html Also this SO question: stackoverflow.com/questions/10416779/… I think this lends strong credence to Andrea's theory. Maybe ask them to double check their compiler flags? |
|
Apr 18 |
comment |
Under what conditions might instancesRespondToSelector: return true, but performSelector: throw an exception I haven't been able to come up with code that would prove this, but any chance it has to do with conflicting category names/arguments? If your code is being distributed in a library you really should prefix it anyway, in case they have their own JSONValue category, which wouldn't be uncommon. |
|
Mar 24 |
comment |
Problems with NSNotificationCenter and loading the UIViewControlletr @adam I really don't think this has to do with threading. If you upload the code to github or something, I will look at it and find the problem. |
|
Mar 24 |
comment |
Problems with NSNotificationCenter and loading the UIViewControlletr All UIKit things happen on the main thread, and you have to purposely move to another thread using e.g. Grand Central Dispatch, so it's unlikely that being on another thread is the issue. There is a class method on NSThread called isMainThread that you could use to check, though. |
|
Mar 16 |
accepted | Display FPS on iOS onscreen (without Instruments) |
|
Mar 16 |
answered | Display FPS on iOS onscreen (without Instruments) |
|
Mar 2 |
asked | Display FPS on iOS onscreen (without Instruments) |
|
Feb 28 |
comment |
Ignoring a “Property type is incompatible with type inherited from” warning in Objective-C I learned that the -fdiagnostics-show-option can be passed to Clang to show the associated warning group for the warning (which you can use to suppress that warning group). I'm not sure how to view that in Xcode, so I compiled on the command line. Unfortunately, while I got warning groups for retain cycles and such, none was printed for this specific warning, so there may not be a specific flag. |
|
Feb 28 |
comment |
Ignoring a “Property type is incompatible with type inherited from” warning in Objective-C This doesn't make sense. Subclasses specialize in some way relative to their superclass, i.e. a UITableViewCell subclass might specify that it's backgroundView property is a UIImageView so that it can draw an image as the background. Moreover, there is no warning for it when the classes are #imported in the header, indicating that there is no problem with it. |
|
Feb 28 |
asked | Ignoring a “Property type is incompatible with type inherited from” warning in Objective-C |
|
Feb 26 |
revised |
Avoiding blended layers when using resizableImages on iOS Remove edit 3, make it an answer. |
|
Feb 26 |
accepted | Avoiding blended layers when using resizableImages on iOS |
|
Feb 26 |
answered | Avoiding blended layers when using resizableImages on iOS |
|
Feb 25 |
comment |
UISwitch doesn't maintain its value when leaving the view controller I answered a similar question and included a sample project on Github you can reference: stackoverflow.com/a/13666090/1176156 |