Brad Larson
|
Registered User
|
My day job is with a company I co-founded, called SonoPlot, Inc., which manufactures and sells robotic systems for the printed electronics and biological research markets. Among other things, I write our control software, which is Cocoa-based, running on Macs.
I do Mac and iPhone development on the side in my one-man company Sunset Lake Software. Lately, like everyone else, I've been doing some tinkering on the iPhone. |
|
22h |
answered | How can I use NSNotificationCenter to broadcast accelerometer changes to multiple objects? |
|
22h |
revised |
How can I use NSNotificationCenter to broadcast accelerometer changes to multiple objects? Cleaned up the title and added a tag |
|
22h |
comment |
How can I use NSNotificationCenter to broadcast accelerometer changes to multiple objects? This is related to a previous question he had asked, where he wanted multiple objects to respond to accelerometer changes. He was told to use NSNotificationCenter: stackoverflow.com/questions/1928457/… |
|
22h |
comment |
NSZombie on a distributed application It's true that the zombies aren't actual leaks, but they do chew up memory like them. From the CocoaDev wiki ( cocoadev.com/index.pl?NSZombieEnabled ): "NSZombieEnabled should not be left in place permanently, as by default no objects will ever be truly deallocated, making your application use tremendous amounts of memory." During debugging, this can make it hard to find actual leaks. |
|
1d |
comment |
Viewing Ad-Hoc crash reports from an iPhone In particular, pay attention to the tips there on making sure that your .dSYM file for this exact build is found via Spotlight. |
|
1d |
comment |
Assessing elements in plist iphone sdk NSDictionary keys can be more than just NSStrings, they simply need to conform to the NSCopying protocol. Also, as has been pointed out, you probably meant -valueForKey: instead of objectForValue:. |
|
1d |
comment |
how find position of CAlayer during animation? Actually, this won't work in this case. While you can observe the layer's properties, they only reflect the start or ending values for the layer, not anything in between. As I clarify in my answer, you will need to look to the presentationLayer for current values of the layer while it is animating. |
|
1d |
answered | how find position of CAlayer during animation? |
|
1d |
answered | OpenGL ES as a 2D Platform |
|
1d |
comment |
NSZombie on a distributed application Yes, make sure you keep track of this. I accidentally left this on and nearly tore my hair out trying to figure out why what looked like clean code was using up memory like crazy. |
|
2d |
comment |
Problem initializing an object with init in Objective-C Actually, I think that having one central accelerometer delegate which broadcasts messages via NSNotificationCenter to multiple objects listening for any accelerometer updates is an elegant solution. It decouples the accelerometer delegate and the things that care when the accelerometer reports a change. |
|
2d |
accepted | s7graphview example |
|
2d |
comment |
Gradients on UIView and UILabels On iPhone You can place this over a UIImageView to add a gradient. For altering the contents of an image, you might need to draw the image first to a context, draw the gradient above it in that context, and then save the context as a new image. |
|
2d |
comment |
How do I get ‘iPhone Device 2.2.1’ listed as one of my active SDKs in xcode? This is a duplicate of this question: stackoverflow.com/questions/1350172/… |
|
2d |
answered | iPhone: Native App with Locally Stored Webapp? |
|
2d |
comment |
iPhone: Native App with Locally Stored Webapp? That's not correct. You can maintain your complete directory structure by including the directory itself as a resource in Xcode. I do this to provide in-application HTML-based help, with subdirectories for chapters and subdirectories within those for images. |
|
2d |
comment |
Where to start learning open-gl es This is very close to the following questions: stackoverflow.com/questions/72288/… , stackoverflow.com/questions/693613/… , stackoverflow.com/questions/413919/… , stackoverflow.com/questions/1148143/… |
|
Dec 17 |
answered | How do I install iPhone2.0 SDK on snow leopard? |
|
Dec 17 |
answered | how to draw on the surface of imageview transparently |
|
Dec 17 |
revised |
how to draw on the surface of imageview transparently Fixed previous code formatting |
|
Dec 17 |
comment |
How to identify whether the current data network is Edge or 3G on iPhone This is a duplicate of the following question: stackoverflow.com/questions/1381056/… |
|
Dec 17 |
comment |
Limit of localstorage on iPhone? Yes, this is relevant to web development on the iPhone. |
|
Dec 17 |
revised |
Allow touch events only on some selected labels of view Cleaned up source code formatting and retagged |
|
Dec 17 |
comment |
Iphone 3d Animation Problem I'm not sure what you're describing, but zPosition is a property that is implicitly animated on CALayer, so it will animate to the new zPosition by default. To disable this, you can wrap your call to that property in a CATransaction (begin / end), and call '[CATransaction setValue:(id)kCFBooleanTrue forKey:kCATransactionDisableActions];' before the change in setting. As far as the viewable range on zPosition, you'll need to check that yourself. I've seen differences on various OS versions and platforms. |
|
Dec 17 |
comment |
How to do something as application load Logo image You just asked pretty much the same question: stackoverflow.com/questions/1919939/… |
|
Dec 17 |
awarded | ● Citizen Patrol |
|
Dec 17 |
comment |
How can i check an iphone device is jailbroken or not? This is a duplicate of the following question: stackoverflow.com/questions/413242/… |
|
Dec 17 |
accepted | Main thread hangs indefinitely while waiting for NSOperationQueue operations to cancel [Only on Device!] |
|
Dec 17 |
accepted | about WifiManager.bundle |
|
Dec 16 |
answered | Iphone 3d Animation Problem |
|
Dec 16 |
accepted | How do I use CGAffineTransformMakeScale and Rotation at once? |
|
Dec 16 |
revised |
Iphone 3d Animation Problem Reformatted the code and retagged |
|
Dec 16 |
comment |
Getting started with cocoa drawing I agree with Peter. Most of the non-iPhone drawing code you will find out there assumes the default Quartz coordinate space, not a flipped one. In fact, in the Core Plot library, we chose to flip the iPhone UIView coordinate space, not the Mac's, so that we could maintain an identical drawing code base between the two platforms. It's a more familiar coordinate system to experienced Cocoa developers. In any case, it's trivial to flip things around. |
|
Dec 16 |
comment |
iPhone Core Data: Property Persistance Durring Undo Generally, I've only needed the second -processPendingChanges when disabling undo registration. |
|
Dec 16 |
answered | Most important documentation in the Iphone Dev Center |
|
Dec 16 |
comment |
JSon and objective-c This is a duplicate of the following question: stackoverflow.com/questions/286087/… |
|
Dec 16 |
comment |
How to use OpenBase SQL in Objective-c for iphone? Your previous question was answered, and it was a bug in your memory allocation / deallocation. If you are having additional problems, you should ask another question about that. |
|
Dec 16 |
comment |
Main thread hangs indefinitely while waiting for NSOperationQueue operations to cancel [Only on Device!] One way I've handled this is to cancel all background processes that would hit the main thread, then call -cancelAllOperations. Before any code that would perform a selector on the main thread in my operations, I add a check for isCancelled, which bails out of the operation at that point if true. I then sleep() for a short bit after the -cancelAllOperations message, and finally call -waitUntilAllOperationsAreFinished. If you're careful about shutting down everything that hits the main thread but this, you can make this work. |
|
Dec 16 |
comment |
Main thread hangs indefinitely while waiting for NSOperationQueue operations to cancel [Only on Device!] Blocking the main thread on exit is the one case that I can think of where this might be required, in order to guarantee that all of your operations will complete before the application is closed. A callback on a separate thread won't cut it, because that won't prevent the application from being stopped mid-operation. |
|
Dec 16 |
comment |
Other App icons in iPhone App This isn't really programming related, because it has to do with copyright and Apple's policies for iPhone applications. |
|
Dec 16 |
comment |
Reminder feature in iPhone Native Application See this question, in that case: stackoverflow.com/questions/246249/… |
|
Dec 16 |
comment |
calling initWithNibName doesn’t initialize items in the nib, it has 0x0. The Resource Programming Guide has more on the life cycle of nib files: developer.apple.com/iPhone/library/… |
|
Dec 16 |
comment |
Any idea why glVertexPointer() wouldn’t draw anything when using GL_FLOAT? Before you completely abandon fixed-point values for floats, you should look at converting your geometry to use GLshorts. They can be far more efficient than GLfloats or GLfixeds because of their reduced size. Minimizing the size of your geometry is critical when tuning OpenGL performance on the iPhone. |
|
Dec 16 |
comment |
Any idea why glVertexPointer() wouldn’t draw anything when using GL_FLOAT? You're probably using GLfixed values elsewhere, perhaps in the setup of your projection or model view matrix. This might be setting your viewable volume to be 0..1, 0..1, 0..1, so if you just typecast the fixed-point values to floats, your model is probably way outside of that volume. By normalizing the fixed-point values to 1.0 before typecasting to floats, your model would now lie within the viewable volume. |
|
Dec 16 |
answered | Main thread hangs indefinitely while waiting for NSOperationQueue operations to cancel [Only on Device!] |
|
Dec 15 |
accepted | Confused in getting the ManagedObjectContext from AppDelegate |
|
Dec 15 |
answered | Confused in getting the ManagedObjectContext from AppDelegate |
|
Dec 15 |
comment |
Sliding from One View to Another. Unfortunately, WebViews can't be layer-backed on the Mac, so they won't play nice with Core Animation: stackoverflow.com/questions/1618498/… . If that's your case, I'd follow Peter's suggestion of using NSViewAnimation. |
|
Dec 15 |
comment |
iPhone or iPod Touch as test device I question the legality of such a service. |
|
Dec 15 |
comment |
Useful iPhone Libraries Yes, I thought I'd tie in some of the previous questions so that readers could jump off to those. |
