User Douglas Mayle - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T03:30:08Zhttp://stackoverflow.com/feeds/user/8458http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1834373/check-cpu-type-at-run-time-for-c-program-on-mac/1834442#18344420Answer by Douglas Mayle for check CPU type at RUN time for C program on MACDouglas Mayle2009-12-02T17:19:52Z2009-12-02T17:19:52Z<p>Do you realize that universal binaries on the mac are compiled multiple times, once for each architecture? I imagine that when you talk about compile time, you're referring to using your configure/make system to notify the source.... Just use gcc constants (like LITTLE_ENDIAN )</p>
http://stackoverflow.com/questions/1832528/is-close-necessary-when-using-iterator-on-a-python-file-object/1832572#18325721Answer by Douglas Mayle for Is close() necessary when using iterator on a Python file objectDouglas Mayle2009-12-02T12:17:52Z2009-12-02T12:17:52Z<p>It's kind of hinted at all over the place, but to make it the most clear, yes, you need to close that file. In Python 2.5 (using <strong>future</strong>) and in Python 2.6, you no longer need the wordy version:</p>
<pre><code>from __future__ import with_statement
with open("hello.txt") as f:
for line in f:
print line
</code></pre>
http://stackoverflow.com/questions/1831634/how-to-get-left-top-and-right-buttom-latitude-and-longitude-of-map-in-mapkit/1831660#18316602Answer by Douglas Mayle for How to get left-top and right-buttom latitude and longitude of map in MapKitDouglas Mayle2009-12-02T09:13:17Z2009-12-02T09:13:17Z<p>There is a much easier approach to getting those coordinates... Use the points of your view, and convert:</p>
<pre><code>CLLocationCoordinate2d topLeft, bottomRight;
topLeft = [mapView convertPoint:CGPointMake(0, 0) toCoordinateFromView:mapView];
CGPoint pointBottomRight = CGPointMake(mapView.frame.size.width, mapView.frame.size.height);
bottomRight = [mapView convertPoint:pointBottomRight toCoordinateFromView:mapView];
</code></pre>
http://stackoverflow.com/questions/1827629/how-to-find-list-of-modules-which-depend-upon-a-specific-module-in-python/1827714#18277143Answer by Douglas Mayle for how to find list of modules which depend upon a specific module in pythonDouglas Mayle2009-12-01T17:33:02Z2009-12-01T17:33:02Z<p>You might want to take a look at Ian Bicking's Paste reloader module, which does what you want already:</p>
<p><a href="http://pythonpaste.org/modules/reloader?highlight=reloader" rel="nofollow">http://pythonpaste.org/modules/reloader?highlight=reloader</a></p>
<p>It doesn't give you specifically a list of dependent files (which is only technically possible if the packager has been diligent and properly specified dependencies), but looking at the code will give you an accurate list of modified files for restarting the process.</p>
http://stackoverflow.com/questions/1827639/populate-uitableview-with-results-of-webservice/1827657#18276570Answer by Douglas Mayle for Populate UITableView with results of webserviceDouglas Mayle2009-12-01T17:23:40Z2009-12-01T17:23:40Z<p>Are you calling reloadData on the tableview once you've repopulated the array? You need to let it know that you have new data.</p>
http://stackoverflow.com/questions/1827525/quickest-way-to-insert-into-sqlite-using-c-api/1827547#18275475Answer by Douglas Mayle for Quickest way to insert into SQLite using C API?Douglas Mayle2009-12-01T17:01:58Z2009-12-01T17:01:58Z<p>Start a transaction in the code, and all of the inserts will happen in memory before being written to the disk on a commit. (You may need to chunk this depending on how much memory you have available, and how much data you are inserting) This will be the biggest performance increase that you'll see.</p>
<p>Otherwise, if it's inserts into the same table, rebind your data one row at a time to the same statement after each insert to prevent the text processing overhead. However, compared to transactions, this will be relatively minor. The majority of your insert time will be in disk writes...</p>
http://stackoverflow.com/questions/1827234/iphone-animation-efficiency-solutions-layering-questions/1827269#18272691Answer by Douglas Mayle for iPhone animation efficiency solutions, layering questionsDouglas Mayle2009-12-01T16:24:35Z2009-12-01T16:57:39Z<p>Assuming that the total animation sequence is static, you're best bet is to compile it as movie, and use the movie player framework to play it:</p>
<pre><code>MPMoviePlayerController
</code></pre>
<p>This will allow the iPhone to use custom hardware for the display, and will keep the battery use low. As to user interaction, you just need to set the movieControlMode property to prevent the user from being able to interact with the movie:</p>
<blockquote>
<p>MPMovieControlModeHidden Do not
display any controls. This mode
prevents the user from controlling
playback.</p>
<p>Available in iPhone OS 2.0 and later.</p>
<p>Declared in MPMoviePlayerController.h.</p>
</blockquote>
http://stackoverflow.com/questions/1826228/building-a-multithreaded-work-queue-consumer-producer-in-c/1826286#18262860Answer by Douglas Mayle for Building a multithreaded work-queue (consumer/producer) in C++Douglas Mayle2009-12-01T13:47:38Z2009-12-01T13:52:42Z<p>You should take a look at <a href="http://www.cse.wustl.edu/~schmidt/ACE-overview.html" rel="nofollow">ACE (Adaptive Communication Environment)</a> and the ACE_Message_Queue. There's always boost's <a href="http://www.boost.org/doc/libs/1%5F35%5F0/doc/html/boost/interprocess/message%5Fqueue.html" rel="nofollow">message_queue</a>, but ACE is where it's at in terms of high performance concurrency.</p>
http://stackoverflow.com/questions/1826011/resizing-uinavigationbar-on-rotation/1826244#18262440Answer by Douglas Mayle for Resizing UINavigationBar on rotationDouglas Mayle2009-12-01T13:38:44Z2009-12-01T13:38:44Z<p>Rather than set it's autoresizing mask, why don't you just check the current orientation in viewWillAppear, as well as in didRotateFromInterfaceOrientation, and set the appropriate frame?</p>
<pre><code>- (void) updateNavBar {
UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
if ((UIInterfaceOrientationLandscapeLeft == orientation) ||
(UIInterfaceOrientationLandscapeRight == orientation)) {
myNavBar.frame = CGRectMake(0, 0, 480, 34);
} else {
myNavBar.frame = CGRectMake(0, 0, 320, 44);
}
}
- (void) viewWillAppear {
[self updateNavBar];
// ... SNIP ...
}
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
[self updateNavBar];
// ... SNIP ...
}
</code></pre>
http://stackoverflow.com/questions/1825384/using-super-in-nested-classes/1825470#18254704Answer by Douglas Mayle for Using super() in nested classes.Douglas Mayle2009-12-01T11:04:30Z2009-12-01T11:04:30Z<p>I'm not sure why A.B is not working correctly for you, as it should.. Here's some shell output that works:</p>
<pre><code>>>> class A(object):
... class B(object):
... def __init__(self):
... super(A.B, self).__init__()
... def getB(self):
... return A.B()
...
>>> A().getB()
<__main__.B object at 0x100496410>
</code></pre>
http://stackoverflow.com/questions/1818863/how-to-create-a-configurable-tab-bar-like-music-app-in-iphone/1819017#18190170Answer by Douglas Mayle for How to create a configurable Tab bar like music app in iPhoneDouglas Mayle2009-11-30T10:32:14Z2009-11-30T10:32:14Z<p>Well, then it's a good thing that UITabBar has this functionality built in. Take a look at the following method:</p>
<pre><code>UITabBar *mybar = [[UITabBar alloc] init];
[mybar beginCustomizingItems:[NSArray arrayWithObjects:tabItem1, tabItem2, nil]];
</code></pre>
http://stackoverflow.com/questions/1803292/initialize-project-layout-in-python/1803321#18033212Answer by Douglas Mayle for Initialize project layout in python ?Douglas Mayle2009-11-26T12:07:14Z2009-11-26T12:19:12Z<p>You need something that supports templating to pull this off. The most used in the python community is pastescript.</p>
<pre><code>easy_install pastescript # A one-time install
paster create
</code></pre>
<p>If you've already decided on the name of the package, than it's just:</p>
<pre><code>paster create mypackage
</code></pre>
<p>If you want to customize the template, than the easiest way is to create your own python package that includes the custom template you want. Once you've installed it into your environment, you can then use this custom template as much as you want. (This is the sort of thing used by frameworks like pylons to create a template for a web application).</p>
<pre><code>paster create -t libtemplate mypackage
paster create -t apptemplate mypackage
</code></pre>
<p>For more details on how to create templates (which consist of a mix of code and source files) take a look at: <a href="http://pythonpaste.org/script/developer.html#templates" rel="nofollow">http://pythonpaste.org/script/developer.html#templates</a> You'll notice that templates support inheritance, so that you can, e.g. just build upon the included template, or create your own, from-scratch templates.</p>
<p>For a good example of a customized template, you can take a look at the pylons template in source, here: <a href="http://pylonshq.com/project/pylonshq/browser/pylons/util.py#L182" rel="nofollow">Pylons Template Code</a></p>
<p>In addition, if you're not already using it, you should take a look at Ian Bicking's virtualenv. It allows you to create temporary 'virtual' environments that allow you to install python packages without using and/or conflicting with whatever system-wide packages you may have installed.</p>
<p>A standard setup with virtualenv and pastescript might look something like this:</p>
<pre><code>mkdir mypackage && cd mypackage
virtualenv --distribute env
source env/bin/activate # 'Turns on / activates' the environment
easy_install pastescript
paster create mypackage
</code></pre>
http://stackoverflow.com/questions/1803169/nsdateformatter-gives-different-values-on-device-and-simulator-what-is-work-arou/1803274#18032741Answer by Douglas Mayle for NSDateFormatter gives different values on device and simulator? What is work around?Douglas Mayle2009-11-26T11:58:13Z2009-11-26T11:58:13Z<p>While the other answer mentioned above is technically correct, it doesn't give you the solution you are looking for. While the NSDateFormatter defaults to using user locales (and is, as such, not going to give you useful results) you can request a specific locale to get consistent results:</p>
<pre><code>NSDateFormatter *frm = [[NSDateFormatter alloc] init];
[frm setDateFormat:@"EEE MMM dd HH:mm:ss ZZZ yyyy"];
NSLocale *en_US = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
[frm setLocale:en_US];
[en_US release];
</code></pre>
http://stackoverflow.com/questions/1803186/convert-nsstring-to-unsigned-char-for-iphone-application/1803230#18032303Answer by Douglas Mayle for Convert NSString to unsigned char * for iphone applicationDouglas Mayle2009-11-26T11:46:16Z2009-11-26T11:46:16Z<p>Well, the question is a bit of a mis-nomer, because typing isn't the only thing you have to worry about. Not only do you need to worry about access, but you also need to worry about encoding. Assuming you just want the UTF8 encoding, than you can get away with:</p>
<pre><code>NSString *myString = @"Hello";
const unsigned char *string = (const unsigned char *) [myString UTF8String];
</code></pre>
<p>If, however, you need access to one-byte per character data, than you probably want one of the other encodings, like ASCII:</p>
<pre><code>NSString *myString = @"Hello";
const unsigned char *string = (const unsigned char *) [myString cStringUsingEncoding:NSASCIIStringEncodin];
</code></pre>
<p>The other valuable encoding that you might want to use is Latin1, which gets you standard ASCII, along with accented characters and symbols used by most languages in Western Europe and the U.S.: <code>NSISOLatin1StringEncoding</code></p>
http://stackoverflow.com/questions/1796744/how-to-save-data-in-nsuserdefaults-even-if-app-will-be-deleted/1796950#17969500Answer by Douglas Mayle for How to save data in NSUserDefaults even if app will be deleted?Douglas Mayle2009-11-25T13:35:37Z2009-11-25T13:35:37Z<p>There are two places where you can store data that will persist after an app is deleted, but in both cases, it's not hidden data, so if that's what you're looking for, you're out of luck.</p>
<p>Your two possibilities are 1) Saving data to the photo library. (However, you can't read it back unless you get the user to select the photo for you.) 2) The address book. This is one place where you can create an entry and select it without user input.</p>
http://stackoverflow.com/questions/1796757/mddr-in-user-agent-string/1796931#17969310Answer by Douglas Mayle for MDDR in user agent stringDouglas Mayle2009-11-25T13:32:10Z2009-11-25T13:32:10Z<p>Not too sure, but some links that might be of help:</p>
<p><a href="http://sillydog.org/forum/sdt%5F15762.php" rel="nofollow">http://sillydog.org/forum/sdt_15762.php</a> : User forum that displays user agent strings. There's a member of the Bing outreach team (bingnate) who has that in his user agent strings. You might be able to ask him.</p>
<p><a href="http://user-agent-string.info" rel="nofollow">http://user-agent-string.info</a> User agent analyzer.</p>
http://stackoverflow.com/questions/1791515/onclick-does-not-work-properly-on-p-tag/1791535#17915353Answer by Douglas Mayle for onClick does not work properly on p tagDouglas Mayle2009-11-24T17:12:58Z2009-11-25T13:12:33Z<p>myFunction would need to return a function for your code to work</p>
<p>Below someone mentions an option that tries to create an inline function, but because closure binding happens with variables, not values, this will not work (The <code>i</code> in the code will be modified after including it in the function).</p>
<p>There are two obvious ways to create the function and have it work. One is to create a per-handler function... The other is using <code>this</code> to get the element.</p>
<pre><code>(function () {
var myFunction = function (theP) {
return function() {
alert(theP.id);
}
}
window.onload = function () {
var pTags = document.getElementsByTagName('p'),
pLength = pTags.length,
i;
for (i = 0; i < pLength; i += 1) {
if(pTags[i].className == 'special'){
pTags[i].onClick = myFunction(pTags[i]);
}
};
}
})();
</code></pre>
<p>And with <code>this</code></p>
<pre><code>(function () {
var myFunction = function () {
alert(this.id)
}
window.onload = function () {
var pTags = document.getElementsByTagName('p'),
pLength = pTags.length,
i;
for (i = 0; i < pLength; i += 1) {
if(pTags[i].className == 'special'){
pTags[i].onClick = myFunction;
}
};
}
})();
</code></pre>
<p>The second format is the preferred format, as it uses much less memory to implement by the browser.</p>
http://stackoverflow.com/questions/1726640/using-keys-with-spaces/1726679#17266791Answer by Douglas Mayle for Using keys with spacesDouglas Mayle2009-11-13T02:06:27Z2009-11-17T22:07:49Z<p>The best way to get at it is to sneak the property name into another variable, like so:</p>
<pre><code>{% for key, value in hop.items %}
{% ifequal key 'boil time' %}
{{ value }}
{% endifequal %}
{% endfor %}
</code></pre>
<p>In Django 0.96 (the version used by Google AppEngine) the templating language doesn't support tuple expansion, so it's a bit uglier:</p>
<pre><code>{% for hop in hops %}
<tr>
<td>{{ hop.name }}</td>
<td>{{ hop.mass }}</td>
<td>
{% for item in hop.items %}
{% ifequal item.0 'boil time' %}
{{ item.1 }}
{% endifequal %}
{% endfor %}
</td>
</tr>
{% endfor %}
</code></pre>
<p>So, taking your code, we end up with:</p>
<pre><code>{% for hop in hops %}
<tr>
<td>{{ hop.name }}</td>
<td>{{ hop.mass }}</td>
<td>
{% for key, value in hop.items %}
{% ifequal key 'boil time' %}
{{ value }}
{% endifequal %}
{% endfor %}
</td>
</tr>
{% endfor %}
</code></pre>
<p>In Django 0.96 (the version on Google AppEnginge), this becomes:</p>
<pre><code>{% for hop in hops %}
<tr>
<td>{{ hop.name }}</td>
<td>{{ hop.mass }}</td>
<td>
{% for item in hop.items %}
{% ifequal item.0 'boil time' %}
{{ item.1 }}
{% endifequal %}
{% endfor %}
</td>
</tr>
{% endfor %}
</code></pre>
<p>There's even a wordier way to get at it, using the regroup tag:</p>
<pre><code>{% regroup hop.items by 'boil time' as bt %}
{% for item in bt %}
{% if forloop.first %}
{% for item2 in item.list %}
{% for item3 in item2 %}
{% if not forloop.first %}
{{ item3 }}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% endfor %}
</code></pre>
http://stackoverflow.com/questions/1726641/toggle-the-background-color-between-two-links-to-show-which-is-active-using-jquer/1726660#17266600Answer by Douglas Mayle for Toggle the Background Color between two links to show which is active using jquery and css?Douglas Mayle2009-11-13T02:01:21Z2009-11-13T02:01:21Z<p>You want code that selects both, and applies the class to only one of the selected one.</p>
<pre><code>$('div.togglers').click(function() {
$('div.togglers').removeClass('selected').filter(this).addClass('selected');
});
</code></pre>
<p>After that, you just need two separate CSS rules.</p>
<pre><code>div.togglers {
background-color: white;
}
div.togglers.selected {
background-color: red;
}
</code></pre>
http://stackoverflow.com/questions/1561326/how-do-you-handle-section-inserts-with-an-nsfetchedresultscontroller0How do you handle section inserts with an NSFetchedResultsController?Douglas Mayle2009-10-13T16:19:21Z2009-11-10T06:03:50Z
<p>I've got an NSFetchedResultsController as my data source and and I implement NSFetchedResultsControllerDelegate in my custom UITableViewController. I'm using sectionNameKeyPath to break my result set into multiple sections.</p>
<p>In one of my methods, I'm adding a couple of objects to the context, all of which are in a new section. At the moment where I save the the objects, the delegate methods are called properly. The order of events:</p>
<pre><code>// -controllerWillChangeContent: fires
[self.tableView beginUpdates]; // I do this
// -controller:didChangeSection:atIndex:forChangeType: fires for section insert
[self.tableView insertSections:[NSIndexSet indexSetWithIndex:sectionIndex]];
// -controller:didChangeObject:atIndexPath:forChangeType:newIndexPath fires many times
[self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath]
withRowAnimation:UITavleViewRowAnimationFade]; // for each cell
// -controllerDidChangeContent: fires after all of the inserts
[self.tableView endUpdates]; // <--- Where things go terribly wrong!!!
</code></pre>
<p>On the last call, "endUpdates", the application always crashes with:</p>
<pre><code>Serious application error. Exception was caught during Core Data change processing:
[NSCFArray objectAtIndex:]: index (5) beyond bounds (1) with userInfo (null)
</code></pre>
<p>It seems that the table updates are not in sync with the NSFetchedResultsController data in some way, and things blow up. I'm following the docs on NSFetchedResultsControllerDelegate, but it's not working. What's the right way to do it?</p>
<p><strong>UPDATE:</strong> I've created a test project that exhibits this bug. You can download it at: <a href="http://douglas.mayle.org/files/NSBoom.zip" rel="nofollow">NSBoom.zip</a></p>
http://stackoverflow.com/questions/1374168/is-there-an-equivalent-to-cs-dynamic-cast-in-objective-c2Is there an equivalent to C++'s dynamic cast in Objective-C ?Douglas Mayle2009-09-03T15:32:48Z2009-11-09T05:42:21Z
<p>If I have two classes, SubClass and SuperClass:</p>
<pre><code>SuperClass *super = new SuperClass();
SubClass *sub = new SubClass();
SubClass *sub_pointer;
// **The nice one-line cast below**
sub_pointer = dynamic_cast<SubClass*> super;
// Prints NO
printf("Is a subclass: %s\n", sub_pointer ? "YES" : "NO");
sub_pointer = dynamic_cast<SubClass*> sub;
// Prints YES
printf("Is a subclass: %s\n", sub_pointer ? "YES" : "NO");
</code></pre>
<p>I can accomplish the same thing in objective-C with isMemberOfClass as follows:</p>
<pre><code>SuperClass *super = [[SuperClass alloc] init];
SubClass *sub = [[SubClass alloc] init];
SubClass *sub_pointer;
id generic_pointer;
// Not as easy:
generic_pointer = super;
if ([generic_pointer isMemberOfClass:[SubClass class]]) {
sub_pointer = generic_pointer;
} else {
sub_pointer = nil;
}
// Logs NO
NSLog(@"Is a subclass: %@", sub_pointer ? @"YES" : @"NO");
generic_pointer = sub;
if ([generic_pointer isMemberOfClass:[SubClass class]]) {
sub_pointer = generic_pointer;
} else {
sub_pointer = nil;
}
// Logs YES
NSLog(@"Is a subclass: %@", sub_pointer ? @"YES" : @"NO");
</code></pre>
<p>Is there an easier way than this?</p>
<p>(P.S. I know I don't have to use the extra id variable, but then I would have to force cast super to SubClass*, which would sometimes result in an invalid reference that I would have to clean up afterwards. That implementation, however, is less wordy, and it's below)</p>
<pre><code>SuperClass *super = [[SuperClass alloc] init];
SubClass *sub = [[SubClass alloc] init];
SubClass *sub_pointer;
// Not as easy:
sub_pointer = (SubClass*) super;
if (![sub_pointer isMemberOfClass:[SubClass class]]) {
sub_pointer = nil;
}
// Logs NO
NSLog(@"Is a subclass: %@", sub_pointer ? @"YES" : @"NO");
sub_pointer = (SubClass*) sub;
if (![sub_pointer isMemberOfClass:[SubClass class]]) {
sub_pointer = nil;
}
// Logs YES
NSLog(@"Is a subclass: %@", sub_pointer ? @"YES" : @"NO");
</code></pre>
http://stackoverflow.com/questions/1613286/how-do-i-respond-to-a-click-on-the-iphone-status-bar0How do I respond to a click on the iphone status bar?Douglas Mayle2009-10-23T13:04:22Z2009-10-28T13:18:15Z
<p>UIScrollView and UIWebView both have special handlers for when the user clicks on the status bar. Is there any way to handle status bar clicks in my views and view controllers?</p>
http://stackoverflow.com/questions/1613286/how-do-i-respond-to-a-click-on-the-iphone-status-bar/1637186#16371861Answer by Douglas Mayle for How do I respond to a click on the iphone status bar?Douglas Mayle2009-10-28T13:18:15Z2009-10-28T13:18:15Z<p>The only way to get status bar touches that is currently supported is to embed your view in a UIScrollView and implement scrollViewShouldScrollToTop on the scroll delegate, return NO, and treat it as a tap event...</p>
http://stackoverflow.com/questions/549004/uitabbarcontroller-and-rotation/1636046#16360460Answer by Douglas Mayle for UITabBarController and rotationDouglas Mayle2009-10-28T09:17:47Z2009-10-28T09:17:47Z<p>Just in case you still need the answer, or someone else stumbles onto this, I've done the same thing and got it working, but there are a couple of hoops you have to jump through. In order to rotate a UITabBarController's view, there are four things you have to do:</p>
<ol>
<li>Remove the status bar before switching to the view</li>
<li>Rotate the view to the new frame</li>
<li>Add the status bar back to the view</li>
<li>Switch to the view.</li>
</ol>
<p>I've got a RootRotationController that does this that looks like this:</p>
<pre><code>@implementation RootRotationController
#define degreesToRadian(x) (M_PI * (x) / 180.0)
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
if ((UIInterfaceOrientationPortrait == interfaceOrientation) || (UIInterfaceOrientationPortraitUpsideDown == interfaceOrientation)) {
[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];
}
// Return YES for supported orientations
return YES;
}
- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
[super willAnimateRotationToInterfaceOrientation:interfaceOrientation duration:duration];
if (UIInterfaceOrientationLandscapeLeft == interfaceOrientation) {
self.view = self.landscape.view;
self.view.transform = CGAffineTransformIdentity;
self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(-90));
self.view.bounds = CGRectMake(0, 0, 480, 300);
} else if (UIInterfaceOrientationLandscapeRight == interfaceOrientation) {
self.view = self.landscape.view;
self.view.transform = CGAffineTransformIdentity;
self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(90));
self.view.bounds = CGRectMake(0, 0, 480, 300);
} else if (UIInterfaceOrientationPortrait == interfaceOrientation) {
mainInterface.view.transform = CGAffineTransformIdentity;
mainInterface.view.transform = CGAffineTransformMakeRotation(degreesToRadian(0));
mainInterface.view.bounds = CGRectMake(0, 0, 300, 480);
[[UIApplication sharedApplication] setStatusBarHidden:NO animated:NO];
self.view = mainInterface.view;
} else if (UIInterfaceOrientationPortraitUpsideDown == interfaceOrientation) {
mainInterface.view.transform = CGAffineTransformIdentity;
mainInterface.view.transform = CGAffineTransformMakeRotation(degreesToRadian(180));
mainInterface.view.bounds = CGRectMake(0, 0, 300,480);
[[UIApplication sharedApplication] setStatusBarHidden:NO animated:NO];
self.view = mainInterface.view;
}
}
</code></pre>
<p>In addition, you should know that shouldAutorotateToInterfaceOrientation is called just after adding the root controller's view to the window, so you'll have to re-enable the status bar just after having done so in your application delegate.</p>
http://stackoverflow.com/questions/1488532/using-variable-heights-with-nsfetchedresultscontroller0Using variable heights with NSFetchedResultsController?Douglas Mayle2009-09-28T18:14:06Z2009-10-23T13:22:18Z
<p>What's the best way to design/use my model and NSFetchedResultsController so that I can use a table with variable height cells? Computing the height is expensive (and requires access to the model's data) so I'm caching the value in my model. However, I know that the tableview will ask for heights of all visible cells.</p>
<p>My current thought is that I will limit the number of results, and allow the user to fetch larger numbers themselves to prevent too much load.</p>
<p>My concerns, however, are that my rows contain about 200 bytes each of relevant data. It's true that faulting 200 rows will only take up about 20k, but what if I wish to display 20000? I'll fault 2MB of raw data just to set cell heights.</p>
<p>There's one attribute that takes up about 90% of the data. That means I could keep the main entity down to 20 bytes per row. Is it worth it to save it in a seperate entity so that I can avoid faulting it in if not needed?</p>
<p>One final note: cell height is entirely dynamic and depends on the content. If there were only a couple of possible choices, this would be much simpler.</p>
http://stackoverflow.com/questions/1488532/using-variable-heights-with-nsfetchedresultscontroller/1613392#16133920Answer by Douglas Mayle for Using variable heights with NSFetchedResultsController?Douglas Mayle2009-10-23T13:22:18Z2009-10-23T13:22:18Z<p>Thankfully, as of iPhone SDK 3.1, we can trace the sql calls used by Core Data. It turns out that for small amounts of data (like 200 bytes per cell), performance is much much better if you keep it all in the same entity. For the example above (with 20000) cells, Core Data may very well perform 2000 additional requests to get the data it needs, and the fetch request overhead becomes troublesome. At that stage, it's better to use batching to speed things up.</p>
http://stackoverflow.com/questions/1608465/preventing-touches-from-being-handled-by-a-parent-table-view0Preventing touches from being handled by a parent table viewDouglas Mayle2009-10-22T16:37:17Z2009-10-23T13:13:37Z
<p>I have a custom table view cell that handles user gestures. However, even if I have exclusiveTouch set to YES, the moment the y value changes by any amount, scolling starts, even if I'm in the middle of handling the touch events. How do I prevent the table from scrolling when I'm handling touch events in the cell?</p>
http://stackoverflow.com/questions/1608465/preventing-touches-from-being-handled-by-a-parent-table-view/1613334#16133341Answer by Douglas Mayle for Preventing touches from being handled by a parent table viewDouglas Mayle2009-10-23T13:13:37Z2009-10-23T13:13:37Z<p>So, the correct way to conditionally handle unfortunately depends on the superView. For some view and events (like UITableView select), you need to forward the touchesBegan: event to nextResponder, keep track of your gesture, forward touchesMoved: events to the nextResponder until you detect your gesture, and when it's triggered you send a touchesCancelled: to the nextResponder, and hide all other events from the next responder (touchesEnded: and touchesCancelled:) until you receive touchesEnded: or touchesCancelled: yourself.</p>
<p>In a UIScrollView, however, there is the special case in that it doesn't depend on being the nextResponder to handle scroll events (Scrolling is most likely detected in methods like hitTest:). So no matter what you do with regards to forwarding or events or not, scrolling still happens. The only way to prevent scrolling from happen is to disable scrolling on the parent view as soon as your gesture is detected, and then re-enable scrolling when it ends or is cancelled.</p>
http://stackoverflow.com/questions/1588342/why-isnt-the-rightcap-on-my-uibutton-clickable0Why isn't the rightcap on my UIButton clickable?Douglas Mayle2009-10-19T12:12:33Z2009-10-19T12:12:33Z
<p>I've created a UIButton subclass so that I can stick a custom view into a standard toolbar button. All it does, is create a stretchable image for the background, and then adds a custom view with userInteractionEnabled set to NO so the button handles all clicks. The code is here:</p>
<pre><code>- (id) init {
if (!(self = [super init])) {
return self;
}
self.frame = CGRectMake(0, 0, BUTTON_WIDTH, BUTTON_HEIGHT);
self.bounds = CGRectMake(self.bounds.origin.x, self.bounds.origin.y + 6, self.bounds.size.width, self.bounds.size.height);
// Buttons look best when their content is centered.
self.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
self.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;
UIImage *image = [UIImage imageNamed:@"UIButtonBarMiniButton.png"];
image = [image stretchableImageWithLeftCapWidth:5 topCapHeight:0];
[self setBackgroundImage:image forState:UIControlStateNormal];
image = [UIImage imageNamed:@"UIButtonBarMiniButtonPressed.png"];
image = [image stretchableImageWithLeftCapWidth:5 topCapHeight:0];
[self setBackgroundImage:image forState:UIControlStateHighlighted];
self.adjustsImageWhenHighlighted = NO;
self.backgroundColor = [UIColor clearColor];
// *SNIP* Create custom view and add as subView
}
</code></pre>
<p>The button works just fine except that the clickable region doesn't include anywhere to the right of the custom view. Left of the view works fine, as well as clicking on the view, but clicking to the right doesn't register at all. What could cause this?</p>
http://stackoverflow.com/questions/1521267/defining-categories-for-protocols-in-objective-c/1566630#15666300Answer by Douglas Mayle for Defining categories for protocols in Objective-C?Douglas Mayle2009-10-14T14:25:41Z2009-10-14T14:25:41Z<p>While it's true that you can't define categories for protocols (and wouldn't want to, because you don't know anything about the existing object), you can define categories in such a way that the code only applies to an object of the given type that has the desired protocol (sort of like C++'s partial template specialization).</p>
<p>The main use for something like this is when you wish to define a category that depends on a customized version of a class. (Imagine that I have UIViewController subclasses that conform to the Foo protocol, meaning they have the foo property, my category code may have need of the foo property, but I can't apply it to the Foo protocol, and if I simply apply it to UIViewController, the code won't compile by default, and forcing it to compile means someone doing introspection, or just screwing up, might call your code which depends on the protocol. A hybrid approach could work like this:</p>
<pre><code>@protocol Foo
- (void)fooMethod
@property (retain) NSString *foo;
@end
@implementation UIViewController (FooCategory)
- (void)fooMethod {
if (![self conformsToProtocol:@protocol(Foo)]) {
return;
}
UIViewController<Foo> *me = (UIViewController<Foo>*) self;
// For the rest of the method, use "me" instead of "self"
NSLog(@"My foo property is \"%@\"", me.foo);
}
@end
</code></pre>
<p>With the hybrid approach, you can write the code only once (per class that is supposed to implement the protocol) and be sure that it won't affect instances of the class that don't conform to the protocol.</p>
<p>The downside is that property synthesis/definition still has to happen in the individual subclasses.</p>
http://stackoverflow.com/questions/1827629/how-to-find-list-of-modules-which-depend-upon-a-specific-module-in-python/1828014#1828014Comment by Douglas Mayle on how to find list of modules which depend upon a specific module in pythonDouglas Mayle2009-12-02T09:27:32Z2009-12-02T09:27:32ZGah, why would you do this? sys.modules already contains all loaded modules....http://stackoverflow.com/questions/1831384/javascript-variable-value-gets-lost-between-functionsComment by Douglas Mayle on JavaScript: Variable Value gets lost between functionsDouglas Mayle2009-12-02T08:21:18Z2009-12-02T08:21:18ZYou need to provide the containing code if you want an explanation of what is happeninghttp://stackoverflow.com/questions/1827234/iphone-animation-efficiency-solutions-layering-questions/1827269#1827269Comment by Douglas Mayle on iPhone animation efficiency solutions, layering questionsDouglas Mayle2009-12-01T16:56:06Z2009-12-01T16:56:06ZNot at all, you have the option of whether or not to display user controlshttp://stackoverflow.com/questions/642648/how-do-i-format-positional-argument-help-using-pythons-optparse/664614#664614Comment by Douglas Mayle on How do I format positional argument help using Python's optparse?Douglas Mayle2009-12-01T11:26:57Z2009-12-01T11:26:57ZI suggest you look at the argparse module... It's small enough that you can embed it in any project, and does the same as this code and much more...http://stackoverflow.com/questions/1791515/onclick-does-not-work-properly-on-p-tag/1791534#1791534Comment by Douglas Mayle on onClick does not work properly on p tagDouglas Mayle2009-11-24T17:18:13Z2009-11-24T17:18:13ZThis code will never work because it tries to make a closure from a value...http://stackoverflow.com/questions/1726640/using-keys-with-spaces/1726679#1726679Comment by Douglas Mayle on Using keys with spacesDouglas Mayle2009-11-14T01:50:19Z2009-11-14T01:50:19ZDan, I actually tested the code on an instance I was running and it worked i both cases... The only thing that I could think of is a problem with items. Try just doing a {{ hop.items }} to see what comes out. If the dictionary had the items method overriden, that could cause issues (e.g. hop has an 'items' property, then try hop.iteritems)http://stackoverflow.com/questions/1613286/how-do-i-respond-to-a-click-on-the-iphone-status-bar/1613316#1613316Comment by Douglas Mayle on How do I respond to a click on the iphone status bar?Douglas Mayle2009-10-23T13:26:53Z2009-10-23T13:26:53ZCrap... sadly that works, but means delving into unsupported functionality. Update your answer to reflect that there is currently no SUPPORTED way to do it, and I'll select your answer.http://stackoverflow.com/questions/1076704/uitableviewcell-different-behaviour-depending-on-touch-durationComment by Douglas Mayle on UITableViewCell - different behaviour depending on touch duration?Douglas Mayle2009-10-22T19:52:27Z2009-10-22T19:52:27ZDid you ever find a solution?http://stackoverflow.com/questions/1608465/preventing-touches-from-being-handled-by-a-parent-table-view/1608630#1608630Comment by Douglas Mayle on Preventing touches from being handled by a parent table viewDouglas Mayle2009-10-22T18:35:21Z2009-10-22T18:35:21ZWon't that prevent ALL events that happen in the cell from bubbling up?http://stackoverflow.com/questions/1326408/is-nsfetchedresultscontrollerdelegate-changeupdate-behavior-broken/1554952#1554952Comment by Douglas Mayle on Is NSFetchedResultsControllerDelegate 'ChangeUpdate' behavior broken?Douglas Mayle2009-10-15T10:56:15Z2009-10-15T10:56:15ZNormally, there's no need, for any cell that you're configuring, you can call setNeedsDisplay. If it's a new cell, it doesn't have a cache, so no worries, if you're reconfiguring, it will redraw. If you really want to know which screens are visible, however, take a look at my response to: <a href="http://stackoverflow.com/questions/996515/getting-visible-cell-from-uitableview-pagingenabled/1566432#1566432" rel="nofollow" title="getting visible cell from uitableview pagingenabled">stackoverflow.com/questions/996515/…</a>http://stackoverflow.com/questions/1561326/how-do-you-handle-section-inserts-with-an-nsfetchedresultscontroller/1563321#1563321Comment by Douglas Mayle on How do you handle section inserts with an NSFetchedResultsController?Douglas Mayle2009-10-14T12:36:58Z2009-10-14T12:36:58ZThank you! That observation (the double updates) allowed my to come up with a workaround I can use.http://stackoverflow.com/questions/1555357/how-do-i-prevent-text-entry-in-a-uitextview/1555485#1555485Comment by Douglas Mayle on How do I prevent text entry in a UITextView?Douglas Mayle2009-10-12T17:22:15Z2009-10-12T17:22:15ZDownvote because it's not an actual working solution, to prevent people from doing the wrong thinghttp://stackoverflow.com/questions/1555357/how-do-i-prevent-text-entry-in-a-uitextview/1555491#1555491Comment by Douglas Mayle on How do I prevent text entry in a UITextView?Douglas Mayle2009-10-12T16:21:07Z2009-10-12T16:21:07ZSorry, this doesn't work either... The editable property doesn't call the standard set of methods. It's a bug in UITextViewhttp://stackoverflow.com/questions/1555357/how-do-i-prevent-text-entry-in-a-uitextview/1555485#1555485Comment by Douglas Mayle on How do I prevent text entry in a UITextView?Douglas Mayle2009-10-12T16:19:59Z2009-10-12T16:19:59ZSorry, but this doesn't work... canBecomeFirstResponder isn't called when changing the editable propertyhttp://stackoverflow.com/questions/1488532/using-variable-heights-with-nsfetchedresultscontroller/1489729#1489729Comment by Douglas Mayle on Using variable heights with NSFetchedResultsController?Douglas Mayle2009-09-29T08:47:39Z2009-09-29T08:47:39ZThere are no standard heights. Each cell can have a different height