| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 10 months |
| seen | 2 days ago | |
| stats | profile views | 11 |
|
Apr 21 |
comment |
Local Name Resolution without Port - MAMP Pro also, how exactly does it fail? |
|
Apr 21 |
comment |
Local Name Resolution without Port - MAMP Pro might you have Web Sharing or something similar running on port 80? |
|
Apr 20 |
comment |
Send keystrokes to frontmost app from sandboxed cocoa app Could you provide enough information on which apps do this and when for me to recreate it? I've never seen it happen from a sandboxed app. |
|
Apr 14 |
answered | How to setRegion with google maps sdk for iOS? |
|
Mar 12 |
awarded | Scholar |
|
Mar 12 |
accepted | When to call Backbone.Relational.store.unregister() when using complex model structures |
|
Mar 11 |
comment |
When to call Backbone.Relational.store.unregister() when using complex model structures Yeah, I've also given up on Backbone.Relational. For this project I ended up writing my own garbage collector, which allowed models to be retained, and then went through the model object graph every once in a while to unregister those models that where not in a retained tree. It was ugly as hell, and I cannot recommend it. |
|
Mar 11 |
awarded | Supporter |
|
Mar 11 |
answered | Will my users old cache file not render my new design correctly? |
|
Mar 10 |
awarded | Commentator |
|
Mar 10 |
comment |
CSS transition in Chrome stops or is jerky while an image is being rendered Could you create a fiddle for this? |
|
Mar 9 |
comment |
Bidirectional communication between model objects in Objective C You might want a controller in between the models to do whatever coordination needs doing, possibly including moving some code form the models to the controller(s). |
|
Mar 9 |
comment |
didSelectRowAtIndexPath is not being called in included nib could you include the code? I'm not quite following what you are trying to do (and why). |
|
Mar 8 |
comment |
Releasing an image from memory Also, [leafViewController.myImageView release] is most likely going to lead to a crash, as you don't have a balancing retain of myImageView. |
|
Mar 8 |
comment |
Releasing an image from memory what exactly do you mean with "the image I previously loaded is still there"? |
|
Mar 8 |
comment |
UIATarget.setLocationWithOptions course not applying My thinking is that you cannot have course without actually moving, and that the environment does not calculate the speed for you if you just update the location. |
|
Mar 8 |
comment |
UIATarget.setLocationWithOptions course not applying Don't you have to supply the speed of motion as well? |
|
Mar 8 |
comment |
ios UIkit copy a UIControl You'll have to excuse me not quite grasping mini-markdown... |
|
Mar 8 |
comment |
ios UIkit copy a UIControl you could always write a helper function for it, like: UIButton* CopyButton(UIButton* button) {
UIButton* copy = [[UIButton alloc] initWithFrame:button.frame];
copy.property1 = button.property1;
copy.property2 = button.property2;
return copy;
} |
|
Mar 8 |
answered | How to check for an NSNotification in an if statement |