User e.James - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T03:10:34Zhttp://stackoverflow.com/feeds/user/33686http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1933438/marking-instance-variables-private/1933537#19335371Answer by e.James for Marking instance variables @privatee.James2009-12-19T17:16:40Z2009-12-19T17:16:40Z<p>Private instance variables are used to separate interface from implementation. In Objective-C, since the class declaration <em>must</em> show all of the instance variables, there needs to be a way to prevent subclasses from accessing the ones that are part of the internal implementation. Otherwise, other programmers could write code that depends on those internal variables, which would make it impossible for the class designer to make changes to the class internals without breaking existing code.</p>
<p>Looking at it another way, the instance variables that are <em>not</em> marked private are part of a contract with the subclass programmer, whereas the ones marked private are not.</p>
<p>This means that instance variables should usually be marked private so that they can only be accessed through their accessor methods, if at all. Otherwise, someone could easily write a subclass of your class, and simply create an accessor to make any instance variable public.</p>
http://stackoverflow.com/questions/1933372/trying-to-get-a-uiimageview-to-stop-moving-when-it-hits-the-bounds-of-the-screen/1933472#19334720Answer by e.James for Trying to get a UIImageView to stop moving when it hits the bounds of the screen...help!e.James2009-12-19T17:03:09Z2009-12-19T17:03:09Z<p>In your <code>rightRepeater</code> method:</p>
<pre><code>- (void)rightrepeater {
CGPoint center = (CGPoint)[player center];
center.x += 10;
CGFloat rightEdge = center.x + [player width]/2;
if (rightEdge > view.bounds.size.width) {
center.x -= (rightEdge - view.bounds.size.width);
}
[player setCenter:center];
}
</code></pre>
<p>And, similarly in your <code>leftRepeater</code> method:</p>
<pre><code>- (void)leftrepeater {
CGPoint center = (CGPoint)[player center];
center.x -= 10;
CGFloat leftEdge = center.x - [player width]/2;
if (leftEdge < 0) {
center.x -= leftEdge;
}
[player setCenter:center];
}
</code></pre>
<p>Note that I used <code>[player width]</code> to obtain the width of each player. I'm not sure if such a method exists, but it should be enough to illustrate the concept.</p>
http://stackoverflow.com/questions/1931974/changing-a-nswindow-view-in-code/1932011#19320113Answer by e.James for Changing a NSWindow view in codee.James2009-12-19T05:01:09Z2009-12-19T05:01:09Z<p>The basic idea would be as follows:</p>
<pre><code>- (IBAction)tableViewDoubleClicked
{
...
[window setContentView:myDetailView];
}
</code></pre>
<p>Note that this may release the view that was previously used as the <code>contentView</code> for the window, so if you are planning to swap around a couple of different content views, you will need to properly retain them elsewhere.</p>
<p>See <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSWindow%5FClass/Reference/Reference.html" rel="nofollow">Apple's documentation</a> for more details.</p>
http://stackoverflow.com/questions/1931935/how-do-i-generate-a-fixed-waveform-table-in-c/1931968#19319683Answer by e.James for How do I generate a fixed-waveform table in C?e.James2009-12-19T04:37:14Z2009-12-19T04:37:14Z<p>As Carl Smotricz pointed out in <a href="http://stackoverflow.com/questions/1931935/how-do-i-generate-a-fixed-waveform-table-in-c/1931947#1931947">his answer</a>, you can easily write a simple C program to build a hard-coded array for you.</p>
<p>The following code would do the trick:</p>
<pre><code>int main(int argc, char * argv[])
{
const int tableSize = 10;
const char * fileName = "sin_table.txt";
int x;
FILE * file;
file = fopen(fileName, "w");
if (file == NULL) { printf("unable to open file\n"); return -1; }
fprintf(file, "float sin_table[%d] =\n{\n ", tableSize);
for (x = 0; x < tableSize; x++)
{
fprintf(file, "\t%f,\n", sinf(x*2*pi/tableSize));
}
fprintf(file, "};\n");
fclose(file);
return 0;
}
</code></pre>
<p>And the output would look like this:</p>
<pre><code>float sin_table[10] =
{
0.000000,
0.587785,
0.951057,
0.951056,
0.587785,
-0.000000,
-0.587785,
-0.951057,
-0.951056,
-0.587785,
};
</code></pre>
http://stackoverflow.com/questions/1928617/svn-mac-stripping-files-of-svn-meta-data/1928650#19286501Answer by e.James for SVN Mac - Stripping files of SVN meta data?e.James2009-12-18T14:51:33Z2009-12-18T14:51:33Z<p>The .svn folder is just a hidden directory which will appear in every (or at least most) of the directories in your source tree.</p>
<p>To remove all of them, you can open up Terminal, navigate to your source directory, and then use the following line (found <a href="http://snippets.dzone.com/posts/show/2486" rel="nofollow">here</a>):</p>
<pre><code>find . -name ".svn" -type d -exec rm -rf {} \;
</code></pre>
http://stackoverflow.com/questions/1924615/college-programs-for-augmented-reality-and-computer-vision/1924716#19247160Answer by e.James for College programs for Augmented Reality and Computer Visione.James2009-12-17T21:27:42Z2009-12-17T21:27:42Z<p><a href="http://www.cmu.edu/index.shtml" rel="nofollow">Carnegie Mellon</a>'s <a href="http://www.hcii.cmu.edu/content/kim-2009-simulated-augmented-reality-w" rel="nofollow">Human-Computer Interface Institute</a> does some interesting work in that field.</p>
http://stackoverflow.com/questions/1923720/problems-trying-to-override-methods-in-objective-c-iphone/1923805#19238051Answer by e.James for Problems trying to override methods in Objective-C (iPhone)e.James2009-12-17T18:52:51Z2009-12-17T18:52:51Z<p>You don't give us much information in your question, but the following is how it <em>should</em> work:</p>
<blockquote>
<p><strong>Class_X.h:</strong></p>
</blockquote>
<pre><code>@interface Class_X : UITableViewController
{
}
- (void)someMethod;
@end
</code></pre>
<blockquote>
<p><strong>Class_X.m:</strong></p>
</blockquote>
<pre><code>#import "Class_X.h"
@implementation Class_X
- (void)someMethod
{
NSLog(@"method in Class_X was called");
}
@end
</code></pre>
<blockquote>
<p><strong>Class_Y.h:</strong></p>
</blockquote>
<pre><code>#import "Class_X.h"
@interface Class_Y : Class_X
{
}
- (void)someMethod;
@end
</code></pre>
<blockquote>
<p><strong>Class_Y.m:</strong></p>
</blockquote>
<pre><code>#import "Class_Y.h"
@implementation Class_Y
- (void)someMethod
{
NSLog(@"method in Class_Y was called");
}
@end
</code></pre>
<blockquote>
<p><strong>Elsewhere:</strong></p>
</blockquote>
<pre><code>#import "Class_Y.h"
...
Class_X * x_instance = [[Class_X alloc] init];
Class_Y * y_instance = [[Class_Y alloc] init];
[x_instance someMethod];
[y_instance someMethod];
[Class_Y release];
[Class_X release];
</code></pre>
<blockquote>
<p><strong>Output:</strong></p>
</blockquote>
<pre><code>method in Class_X was called
method in Class_Y was called
</code></pre>
http://stackoverflow.com/questions/1918392/xcode-local-svn/1918461#19184610Answer by e.James for Xcode Local SVNe.James2009-12-16T23:06:59Z2009-12-16T23:06:59Z<p>I found XCode's interaction with the SVN to be a little weak, so I now use <a href="http://www.zennaware.com/cornerstone/" rel="nofollow">Cornerstone</a> to handle the SVN.</p>
<p><a href="http://en.wikipedia.org/wiki/Separation%5Fof%5Fconcerns" rel="nofollow">Separation of concerns</a>, and all that :)</p>
<p><strong>Note:</strong> CW because this doesn't actually answer the question, but it was too long for a comment.</p>
http://stackoverflow.com/questions/1918021/proper-usage-of-the-pre-increment-operator-in-combination-with-the-pointer-derefe0proper usage of the pre-increment operator in combination with the pointer dereference operatore.James2009-12-16T21:49:34Z2009-12-16T21:56:47Z
<p>I just wrote the following line of code:</p>
<pre><code>if (++(data_ptr->count) > threshold) { /*...*/ } // example 1
</code></pre>
<p>My intent is to increment the <code>count</code> variable within the data structure that <code>data_ptr</code> points to before making the comparison to <code>threshold</code>, and this line of code works.</p>
<p>If I had instead wanted to increment <code>data_ptr</code> before making the comparison, I would have written this:</p>
<pre><code>if ((++data_ptr)->count > threshold) { /*...*/ } // example 2
</code></pre>
<p>Out of curiosity, I also tried this line of code:</p>
<pre><code>if (++data_ptr->count > threshold) { /*...*/ } // example 3
</code></pre>
<p>And found that it behaves exactly the same as the first one.</p>
<p><strong>First question:</strong> <em>Why</em> does example #3 work the same as example #1? Is it a matter of operator precendence? Something in the standard? I had to write a quick test program becuase the answer was not obvious to me.</p>
<p><strong>Second question:</strong> Should I write this <code>if</code> statement differently? I could perform the increment first, on its own line, and <em>then</em> test the condition in order to avoid any possible confusion. Is this necessary, or are the first two examples obvious enough on their own?</p>
http://stackoverflow.com/questions/1916776/xcode-get-rid-of-forward-class-warning/1916823#19168232Answer by e.James for Xcode: Get rid of forward class warninge.James2009-12-16T18:50:53Z2009-12-16T18:50:53Z<p>My <a href="http://stackoverflow.com/questions/834955/how-can-i-solve-this-problem-with-bidirectional-dependencies-in-objective-c-class/835004#835004">answer</a> to a similar question may be of use here.</p>
<p>The basic concept is this:</p>
<p>use <code>@class</code> in header files, and then use <code>#import</code> in the .m files.</p>
http://stackoverflow.com/questions/1911018/what-does-stdendl-represent-exactly-on-each-platform/1911032#19110322Answer by e.James for what does std::endl represent exactly on each platform?e.James2009-12-15T22:53:02Z2009-12-15T22:53:02Z<p>Quoted from the accepted answer on a <a href="http://stackoverflow.com/questions/213907/c-stdendl-vs-n">related question</a>:</p>
<blockquote>
<p>The varying line-ending characters don't matter, assuming the file is open in text mode, which is what you get unless you ask for binary. The compiled program will write out the correct thing for the system compiled for.</p>
<p>The only difference is that std::endl flushes the output buffer, and '\n' doesn't. If you don't want the buffer flushed frequently, use '\n'. If you do (for example, if you want to get all the output, and the program is unstable), use std::endl</p>
</blockquote>
<p>In your case, since you specifically want <code><CR><LF></code>, you should explicitly use <code>\r\n</code>, and then call <code>std::flush()</code> if you still want to flush the output buffer.</p>
http://stackoverflow.com/questions/1909188/define-make-variable-at-rule-execution-time/1909390#19093900Answer by e.James for Define make variable at rule execution timee.James2009-12-15T18:23:45Z2009-12-15T22:18:59Z<p>In your example, the <code>TMP</code> variable is set (and the temporary directory created) whenever the <em>rules</em> for <code>out.tar</code> are evaluated. In order to create the directory only when <code>out.tar</code> is actually fired, you need to move the directory creation down into the steps:</p>
<pre><code>out.tar :
$(eval TMP := $(shell mktemp -d))
@echo hi $(TMP)/hi.txt
tar -C $(TMP) cf $@ .
rm -rf $(TMP)
</code></pre>
<p>The <a href="http://www.gnu.org/software/make/manual/make.html#Eval-Function" rel="nofollow">eval</a> function evaluates a string as if it had been typed into the makefile manually. In this case, it sets the <code>TMP</code> variable to the result of the <code>shell</code> function call.</p>
<p><strong>edit</strong> (in response to comments):</p>
<p>To create a unique variable, you could do the following:</p>
<pre><code>out.tar :
$(eval $@_TMP := $(shell mktemp -d))
@echo hi $($@_TMP)/hi.txt
tar -C $($@_TMP) cf $@ .
rm -rf $($@_TMP)
</code></pre>
<p>This would prepend the name of the target (out.tar, in this case) to the variable, producing a variable with the name <code>out.tar_TMP</code>. Hopefully, that is enough to prevent conflicts.</p>
http://stackoverflow.com/questions/1880866/c-c-default-argument-set-as-a-previous-argument/1880895#18808953Answer by e.James for C/C++ default argument set as a previous argumente.James2009-12-10T13:10:39Z2009-12-10T13:10:39Z<p>As a potential workaround, you could do:</p>
<pre><code>const int defaultValue = -999; // or something similar
void f( int a, int b = defaultValue, int c = defaultValue )
{
if (b == defaultValue) { b = a; }
if (c == defaultValue) { c = b; }
//...
}
</code></pre>
http://stackoverflow.com/questions/1823563/objectforkey-stringvalue-crashing-my-app/1827115#18271150Answer by e.James for objectForKey stringValue crashing my app?e.James2009-12-01T15:57:36Z2009-12-01T15:57:36Z<blockquote>
<p>However, in my initWithDictionary method, the following code crashes my app:</p>
</blockquote>
<pre><code>self.bookTitle = [[parsedDictionary objectForKey:@"book_title"] stringValue];
</code></pre>
<blockquote>
<p>It doesn't work regardless of the object in the parsed dictionary being NSNull or containing a valid string.</p>
</blockquote>
<p>That makes sense, since <code>stringValue</code> is not a valid method on <code>NSString</code>. It will work for <code>NSValue</code> and its subclasses, but not <code>NSString</code>.</p>
http://stackoverflow.com/questions/1820815/how-to-help-a-struggling-newbie-do-a-better-job/1821915#18219152Answer by e.James for How to help a struggling newbie do a better job?e.James2009-11-30T19:35:19Z2009-11-30T19:35:19Z<p>There is a lot of excellent advice being put forward here, and it might be difficult to impart all of this information to your employee directly. Have you considered introducing him to StackOverflow and letting him read this question and its answers? Of course, you should talk to him first, so that the criticisms that you identify will not come as a painful surprise.</p>
<p>I see several benefits to this approach:</p>
<ol>
<li>He may become involved in StackOverflow, which is an excellent way to improve your programming style and learn the ropes</li>
<li>He can see things from your point of view</li>
<li>He can see all of the advice first-hand, and know that we have all been there before</li>
<li>It will open the door to a very honest and up-front employer/employee relationship</li>
</ol>
http://stackoverflow.com/questions/1813483/averaging-angles-again/1813558#18135580Answer by e.James for Averaging angles... Againe.James2009-11-28T19:41:29Z2009-11-28T19:41:29Z<p>I think the problem stems from how you treat angles greater than 180 (and those greater than 360 as well). If you reduce the angles to a range of +180 to -180 before adding them to the total, you get something more reasonable:</p>
<pre><code>int AverageOfAngles(int angles[], int count)
{
int total = 0;
for (int index = 0; index < count; index++)
{
int angle = angles[index] % 360;
if (angle > 180) { angle -= 360; }
total += angle;
}
return (int)((float)total/count);
}
</code></pre>
http://stackoverflow.com/questions/1811779/comparing-dates-in-cocoa/1811812#18118122Answer by e.James for Comparing dates in Cocoae.James2009-11-28T06:50:45Z2009-11-28T06:50:45Z<p>To get the current date, simply use:</p>
<pre><code>NSDate * today = [NSDate date];
</code></pre>
<p>To compare to another date:</p>
<pre><code>if ([today compare:expirationDate] == NSOrderedAscending)
{
// today's date is before the expiration date
}
</code></pre>
http://stackoverflow.com/questions/1786781/are-instance-variables-set-to-nil-by-default-in-objective-c/1786803#17868030Answer by e.James for Are instance variables set to nil by default in Objective-C?e.James2009-11-23T23:31:45Z2009-11-23T23:37:38Z<p>I find that it is good practice to always set those ivars to <code>nil</code> in the <code>init</code> method. That way, you are absolutely sure that your call to <code>release</code> in the destructor can not cause problems.</p>
<p>If it turns out that Objective-C does automatically set them to <code>nil</code>, and for some reason you find yourself with a speed bottleneck that can be improved upon by removing those assignments (highly unlikely), then you can worray about removing them. In the meantime, set theem all to <code>nil</code> and sleep easier :)</p>
<p><strong>update:</strong> BJ Homer and Chuck have pointed out that the ivars <em>will</em> automatically be set to zero, so now it comes down to a decision on style.</p>
http://stackoverflow.com/questions/332030/when-should-staticcast-dynamiccast-and-reinterpretcast-be-used28When should static_cast, dynamic_cast and reinterpret_cast be used?e.James2008-12-01T20:11:07Z2009-11-23T08:36:32Z
<p>I am reasonably proficient in C++, but I do not have a lot of experience using the cast operators to convert pointers of one type to another. I am familiar with the risks and benefits of pointer casting, as well as the evils of using C-style casts. What I am looking for is a primer on the proper ways to use the various cast operators in C++.</p>
<p>What are the proper uses of <code>static_cast</code>, <code>dynamic_cast</code> and <code>reinterpret_cast</code>, and how does one decide which one to use in a specific case?</p>
http://stackoverflow.com/questions/1759054/nstextfieldcell-vertical-alignment-solutions-seem-to-squash-the-horizontal-align/1761049#17610490Answer by e.James for NSTextFieldCell vertical alignment, solutions seem to squash the horizontal alignment.e.James2009-11-19T05:20:08Z2009-11-19T15:06:02Z<p>There are a couple of potential solutions posted in a <a href="http://stackoverflow.com/questions/1235219/is-there-a-right-way-to-have-nstextfieldcell-draw-vertically-centered-text">similar question</a> which I asked a while back.</p>
<p>In all honesty, I still use the undocumented <code>_cFlags.vCentered</code> boolean (<em>tsk</em> <em>tsk</em>, bad programmer!) to get the job done. It's simple, and it works. I'll reinvent the wheel later on if I have to.</p>
<p><strong>update:</strong></p>
<p>OK, I think I've figured it out. Both solutions rely on a call to <code>super</code> to get the default rect, and then modify <code>origin.y</code> and <code>size.height</code> to perform the vertical centering. The calls to <code>super</code>, however, return a rectangle whose width has already been adjusted to fit the text horizontally.</p>
<p>The solution is to use <code>origin.x</code> and <code>size.width</code> from the bounds rect that is passed in to the method:</p>
<blockquote>
<p>In solution #1: </p>
</blockquote>
<pre><code>- (NSRect)titleRectForBounds:(NSRect)theRect {
NSRect titleFrame = [super titleRectForBounds:theRect];
NSSize titleSize = [[self attributedStringValue] size];
// modified:
theRect.origin.y += (theRect.size.height - titleSize.height)/2.0 - 0.5;
return theRect;
}
</code></pre>
<blockquote>
<p>In solution #2: </p>
</blockquote>
<pre><code>- (NSRect)drawingRectForBounds:(NSRect)theRect
{
NSRect newRect = [super drawingRectForBounds:theRect];
// modified:
newRect.origin.x = theRect.origin.x;
newRect.size.width = theRect.size.width;
if (mIsEditingOrSelecting == NO)
{
// Get our ideal size for current text
NSSize textSize = [self cellSizeForBounds:theRect];
// Center that in the proposed rect
float heightDelta = newRect.size.height - textSize.height;
if (heightDelta > 0)
{
newRect.size.height -= heightDelta;
newRect.origin.y += (heightDelta / 2);
}
}
return newRect;
}
</code></pre>
http://stackoverflow.com/questions/1761047/c-cant-use-an-array-or-vectors-how-do-i-use-a-pointer-to-get-through-this-me/1761083#17610831Answer by e.James for C++, Can't use an array or vectors, how do I use a pointer to get through this mess?e.James2009-11-19T05:28:09Z2009-11-19T06:12:53Z<p>I won't post a complete solution because you have identified the question as homework, but I hope I can help you out with the problem a little bit:</p>
<p>Arrays are designed to hold many objects <em>of the same size</em>. The problem with storing different objects in the array (even if they are derived from the same base class) is that the objects are likely to have different sizes.</p>
<p>You're definitely on the right track by thinking about pointers.</p>
<p><strong>edit</strong> (in response to comments): </p>
<p>You would be looking at something like this:</p>
<pre><code>BaseClass * array[size];
array[0] = new DerivedClass(...);
array[1] = new OtherDerivedClass(...);
...
</code></pre>
<p>A pitfall of this approach would be that there is no built-in deletion of the objects in the array. You would have to loop through and call <code>delete</code> manually:</p>
<pre><code>for (int index = 0; index < size; index++) { delete array[index]; }
</code></pre>
http://stackoverflow.com/questions/1753790/tracking-down-cocoa-memory-leaks/1754039#17540392Answer by e.James for Tracking down cocoa memory leakse.James2009-11-18T06:25:27Z2009-11-18T06:25:27Z<p>Huh. This was a fun one. I wrote a quick test to make sure neither of us was insane.</p>
<p>In the end, it all comes down to the calling code:</p>
<pre><code>[[MyViewController alloc] initWithNibName:nil bundle:nil];
</code></pre>
<p>When you initialize a view controller, its <code>view</code> object has not yet been defined, and will not be defined until requested.</p>
<p>Since you specify <code>nil</code> for the nib name, you must override <code>loadView</code> in your <code>UIViewController</code> subclass in order to set the view object properly. See <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIViewController%5FClass/Reference/Reference.html" rel="nofollow">Apple's documentation</a> for details.</p>
<p>The default implementation of <code>loadView</code> apparently does some behind-the-scenes magic, and that magic can result in a memory leak.</p>
<p>So: when you make this call:</p>
<pre><code>[mainWindow addSubview:currentViewer.view];
</code></pre>
<p>You are actually making <em>two</em> calls:</p>
<p>One: <code>currentViewer.view</code>, which results in a call to <code>[currentViewer loadView]</code>, and<br>
Two: <code>[mainWindow addSubview:...]</code>, which attempts to add the newly loaded view.</p>
<p>Leaks identifies this line because of the first call, and not the second one.</p>
<p>To verify, simply modify the <code>loadView</code> method in your custom <code>UIViewController</code> subclasses:</p>
<pre><code>- (void)loadView
{
[self setView:[[UIView new] autorelease]];
}
</code></pre>
<p>This prevents the call to the default <code>loadView</code> and now there are no more leaks.</p>
<p>Obviously, once you develop this application further, you will either have to put something more meaningful in <code>loadView</code>, or use nibs.</p>
http://stackoverflow.com/questions/1749600/iterating-through-a-class-in-excel-vba/1749680#17496804Answer by e.James for Iterating Through a Class in Excel VBAe.James2009-11-17T15:32:39Z2009-11-17T15:32:39Z<p>A common pitfall with this type of code is that every time you write data to the spreadsheet, Excel runs through a calculation (it evaluates all of the formulas in the workbook to see if they need to be computed with the new data).</p>
<p>If you disable automatic calculation before your loop and then re-enable it afterwards, things will move much quicker:</p>
<pre><code>Application.Calculation = xlCalculationManual
For Each terminal In terminals
...
Next terminal
Application.Calculation = xlCalculationAutomatic
</code></pre>
http://stackoverflow.com/questions/1742302/how-to-subclass-atlasspritemanager-in-cocos2d/1742490#17424901Answer by e.James for How to subclass AtlasSpriteManager in Cocos2d?e.James2009-11-16T14:25:40Z2009-11-16T14:52:43Z<p>The runtime error you are seeing indicates that your program has tried to send the <code>makeComplexSprite</code> message to an object, but <em>no such method has been defined for that object</em>.</p>
<p>You appear to be sending the <code>makeComplexSprite</code> message to an instance of <code>AtlasSpriteManager</code> instead of an instance of your custom <code>CompoundSprite</code> class. Your example code looks correct, so how are you doing the subclassing? It should look something like this:</p>
<blockquote>
<p><strong>CompoundSprite.h</strong>: </p>
</blockquote>
<pre><code>@interface CompoundSprite : AtlasSpriteManager
{
}
- (void)makeComplexSprite;
@end
</code></pre>
<blockquote>
<p><strong>CompoundSprite.m</strong>: </p>
</blockquote>
<pre><code>@interface CompoundSprite
- (void)makeComplexSprite
{
...
}
@end
</code></pre>
<p>If you do have the subclassing set up properly, make sure you are actually calling <code>makeComplexSprite</code> on an instance of <code>CompoundSprite</code> and not some other object by accident.</p>
<p><strong>Also:</strong></p>
<p>Your code sample has a memory leak. You are creating two autoreleased sprites, then retaining them (which means your class takes ownership of them), and never releasing them. Since the <code>AddChild:</code> method will automatically retain the objects, you can simply lose the <code>retain</code> calls, and everything will be good.</p>
http://stackoverflow.com/questions/1729607/creating-custom-cell-takes-the-iphone-app-into-an-infinite-loop/1729894#17298941Answer by e.James for Creating Custom Cell takes the iphone app into an infinite loope.James2009-11-13T15:23:42Z2009-11-13T15:23:42Z<p>Does sample_1ViewController.nib contain an instance of your viewController class?</p>
<p>Your code appears to re-load that entire nib file every time <code>dequeueResuableCellWithIdentifier:</code> returns nil, and if that nib file contains an instance of the same viewController class, then it will continue to try to reload the nib file indefinitely.</p>
<p>Since all you need to do is return an instance of the cell class, how about this:</p>
<p>First, add a <code>tableCell</code> instance variable to your viewController class:</p>
<pre><code>@class CustomCell;
@interface MyViewController
{
CustomCell * tableCell;
}
@end
</code></pre>
<p>Create the single instance of your cell in your <code>init</code> method:</p>
<pre><code>- (id)initWithNibName:(NSString *)nibNameOrNil
bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self == nil) { return nil; }
tableCell = [[CustomCell alloc] init];
return self;
}
</code></pre>
<p>Be sure to release it in <code>dealloc</code>:</p>
<pre><code>- (void)dealloc
{
[tableCell release];
}
</code></pre>
<p>And now, your delegate method becomes:</p>
<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
tableCell.lbl.text = @"test";
return tableCell;
}
</code></pre>
http://stackoverflow.com/questions/1699315/how-to-become-a-certified-ethical-hacker/1699341#16993411Answer by e.James for how to become a Certified Ethical Hacker?e.James2009-11-09T06:10:41Z2009-11-09T06:10:41Z<p>From <a href="http://en.wikipedia.org/wiki/Certified%5FEthical%5FHacker" rel="nofollow">wikipedia</a>:</p>
<blockquote>
<p>The Certified Ethical Hacker (C|EH) is a professional certification provided by the <a href="http://en.wikipedia.org/wiki/EC-Council" rel="nofollow">International Council of E-Commerce Consultants</a> (EC-Council).</p>
</blockquote>
<p>On the EC-Council website, take a look at the <a href="http://www.eccouncil.org/ceh-path.htm" rel="nofollow">CEH Certification Track</a>, which describes training, and an exam that must be completed. Also read through their <a href="http://www.eccouncil.org/faq.htm" rel="nofollow">FAQ</a> for more details.</p>
http://stackoverflow.com/questions/1697535/nesting-controls-inside-nstableview-rows/1698013#16980132Answer by e.James for Nesting controls inside NSTableView rowse.James2009-11-08T21:43:57Z2009-11-08T21:43:57Z<p>The quick answer is yes.</p>
<p>Cocoa's user interface elements are implemented as a combination of two parts: a control (a complete subclass of NSView) and a cell (which handles the actual drawing and keyboard/mouse interaction). See <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/ControlCell/ControlCell.html" rel="nofollow">Control and Cell Programming Topics</a> for all of the dirty details.</p>
<p>In <code>NSTableView</code> and <code>NSOutlineView</code>, you can specify the cell class that gets used for each <code>NSTableColumn</code> (or even for each individual element, if you want to go that far). You can use <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSButtonCell%5FClass/Reference/Reference.html" rel="nofollow"><code>NSButtonCell</code></a>, <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSTextFieldCell%5FClass/Reference/Reference.html" rel="nofollow"><code>NSTextFieldCell</code></a>, and even <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSTokenFieldCell%5FClass/Reference/Reference.html#//apple%5Fref/occ/cl/NSTokenFieldCell" rel="nofollow"><code>NSTokenFieldCell</code></a>.</p>
<p>The documentation on <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSTableColumn%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSTableColumn/setDataCell%3A" rel="nofollow"><code>setDataCell:</code></a> has more of the details.</p>
http://stackoverflow.com/questions/1697807/objective-c-messages-whats-the-right-way-to-read-it/1697874#16978742Answer by e.James for Objective-C "messages" - what's the right way to read it?e.James2009-11-08T20:43:18Z2009-11-08T20:43:18Z<p>Other people have covered the most important points, so I'll just weigh in on some of the supplementary questions:</p>
<blockquote>
<p>Also something bothers me and that is the name of the first parameter is basically the same as the name of the 'message'. How do you resolve that in writing meaningful and understandable method/'message names'?</p>
</blockquote>
<p>The most common way of dealing with this is to make the method name a combination of "what it is/does" and the label for the first parameter. Example:</p>
<pre><code> NSColor * color = [NSColor colorWithDeviceRed:0.5 green:0.5 blue:0.5 alpha:0.5];
</code></pre>
<p><hr></p>
<blockquote>
<p>Can someone explain the reason for two names for each parameter and possibly a more useful example of how this can be used effectively to put meaning in the program?</p>
</blockquote>
<p>The quick answer is that the two names are intended for different audiences; one is for the user of the method, the other is for the author of the method. Consider the above example again. The method declaration looks like this:</p>
<pre><code>+ (NSColor *)colorWithDeviceRed:(CGFloat)red
green:(CGFloat)green
blue:(CGFloat)blue
alpha:(CGFloat)alpha
</code></pre>
<p>When a user calls that method, they are concerned with the first labels (the ones before the colon). You can see in my first example, where the channel values are passed as numeric constants, that only the labels are seen in code.</p>
<p>The actual parameter names (the parts after the type), are used <em>within</em> the method definition, and as such are really only there for the programmer who writes the method, since those are the variables that will be available within the method body itself.</p>
http://stackoverflow.com/questions/1697618/number-of-objects-in-an-nsarray/1697623#169762313Answer by e.James for Number of objects in an NSArraye.James2009-11-08T19:28:33Z2009-11-08T19:28:33Z<p>You bet! From <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSArray%5FClass/NSArray.html" rel="nofollow">Apple's documentation</a>:</p>
<pre><code>NSUInteger numObjects = [myArray count];
</code></pre>
http://stackoverflow.com/questions/1697356/how-to-transition-between-two-images-using-a-grayscale-transition-map/1697564#16975642Answer by e.James for How to transition between two images using a grayscale transition mape.James2009-11-08T19:09:20Z2009-11-08T19:25:07Z<p>The grayscale values in the T image represent time offsets. Your wipe effect would work essentially as follows, on a per-pixel basis:</p>
<pre><code>for (timeIndex from 0 to 255)
{
for (each pixel)
{
if (timeIndex < T.valueOf[pixel])
{
compositeImage.colorOf[pixel] = A.colorOf[pixel];
}
else
{
compositeImage.colorOf[pixel] = B.colorOf[pixel];
}
}
}
</code></pre>
<p>To illustrate, imagine what happens at several values of <code>timeIndex</code>:</p>
<ol>
<li><p><code>timeIndex == 0</code> (0%): This is the very start of the transition. At this point, most of the pixels in the composite image will be those of image A, except where the corresponding pixel in T is completely black. In those cases, the composite image pixels will be those of image B. </p></li>
<li><p><code>timeIndex == 63</code> (25%): At this point, more of the pixels from image B have made it into the composite image. Every pixel at which the value of T is less than 25% white will be taken from image B, and the rest will still be image A. </p></li>
<li><p><code>timeIndex == 255</code> (100%): At this point, every pixel in T will negate the conditional, so all of the pixels in the composite image will be those of image B.</p></li>
</ol>
<p>In order to "smooth out" the transition, you could do the following:</p>
<pre><code>for (timeIndex from 0 to (255 + fadeTime))
{
for (each pixel)
{
blendingRatio = edgeFunction(timeIndex, T.valueOf[pixel], fadeTime);
compositeImage.colorOf[pixel] =
(1.0 - blendingRatio) * A.colorOf[pixel] +
blendingRatio * B.colorOf[pixel];
}
}
</code></pre>
<p>The choice of <code>edgeFunction</code> is up to you. This one produces a linear transition from A to B:</p>
<pre><code>float edgeFunction(value, threshold, duration)
{
if (value < threshold) { return 0.0; }
if (value >= (threshold + duration)) { return 1.0; }
// simple linear transition:
return (value - threshold)/duration;
}
</code></pre>
http://stackoverflow.com/questions/1933438/marking-instance-variables-private/1933537#1933537Comment by e.James on Marking instance variables @privatee.James2009-12-19T18:05:10Z2009-12-19T18:05:10ZI tried it out, and you are absolutely correct. It seems that categories are given access to all instance variables, including the private ones. I suppose Objective-C still gives you enough rope to hang yourself with if you really want to :)http://stackoverflow.com/questions/1933372/trying-to-get-a-uiimageview-to-stop-moving-when-it-hits-the-bounds-of-the-screen/1933472#1933472Comment by e.James on Trying to get a UIImageView to stop moving when it hits the bounds of the screen...help!e.James2009-12-19T17:45:03Z2009-12-19T17:45:03ZYou are welcome. Does it work now?http://stackoverflow.com/questions/1933372/trying-to-get-a-uiimageview-to-stop-moving-when-it-hits-the-bounds-of-the-screen/1933472#1933472Comment by e.James on Trying to get a UIImageView to stop moving when it hits the bounds of the screen...help!e.James2009-12-19T17:26:39Z2009-12-19T17:26:39ZThat's probably because there is no <code>-width()</code> method on your players. See the note at the very end of my post. I'm not sure what to use for player width. I suppose you could hard code it if you knew how wide they were ahead of time.http://stackoverflow.com/questions/1928617/svn-mac-stripping-files-of-svn-meta-data/1928650#1928650Comment by e.James on SVN Mac - Stripping files of SVN meta data?e.James2009-12-18T14:53:47Z2009-12-18T14:53:47ZAs usual, please be careful when messing about in the Terminal :)http://stackoverflow.com/questions/1923720/problems-trying-to-override-methods-in-objective-c-iphone/1924274#1924274Comment by e.James on Problems trying to override methods in Objective-C (iPhone)e.James2009-12-18T03:56:56Z2009-12-18T03:56:56ZNo need for shame. We've all been there.http://stackoverflow.com/questions/1920321/point-on-a-line-closest-to-all-other-points/1920495#1920495Comment by e.James on Point on a line closest to all other Pointse.James2009-12-17T19:20:07Z2009-12-17T19:20:07Z+1 and you're welcome :)http://stackoverflow.com/questions/1920321/point-on-a-line-closest-to-all-other-pointsComment by e.James on Point on a line closest to all other Pointse.James2009-12-17T09:25:17Z2009-12-17T09:25:17Z@samgoody: you should post that as an answer. That page provides to links to actual working solutions, complete with source code.http://stackoverflow.com/questions/1920321/point-on-a-line-closest-to-all-other-points/1920400#1920400Comment by e.James on Point on a line closest to all other Pointse.James2009-12-17T09:18:21Z2009-12-17T09:18:21ZAre you talking about a 1D line instead of the full 2D plane?http://stackoverflow.com/questions/1918021/proper-usage-of-the-pre-increment-operator-in-combination-with-the-pointer-derefe/1918059#1918059Comment by e.James on proper usage of the pre-increment operator in combination with the pointer dereference operatore.James2009-12-16T22:49:13Z2009-12-16T22:49:13Z+1 Succinct. ``http://stackoverflow.com/questions/1911018/what-does-stdendl-represent-exactly-on-each-platform/1911032#1911032Comment by e.James on what does std::endl represent exactly on each platform?e.James2009-12-15T23:20:07Z2009-12-15T23:20:07Z@Rob Wells: I thought about that, but decided that it isn't any different from quoting another reference source in my answer, which is, of course, perfectly acceptable. The upvotes are for providing information relevant to the question at hand.http://stackoverflow.com/questions/1911053/turn-a-c-string-with-null-bytes-into-a-char-array/1911103#1911103Comment by e.James on Turn a C string with NULL bytes into a char arraye.James2009-12-15T23:11:23Z2009-12-15T23:11:23ZNote that this will only work if the LPSTR ends in <i>two</i> null characters. Otherwise, it will continue to print out chunks of memory until it happens to run into two consecutive bytes equal to zero, or until it causes a segfault.http://stackoverflow.com/questions/1909188/define-make-variable-at-rule-execution-time/1909390#1909390Comment by e.James on Define make variable at rule execution timee.James2009-12-15T22:19:43Z2009-12-15T22:19:43ZI've posted a possible solution in my answer. Hopefully that helps. Good luck!http://stackoverflow.com/questions/1909188/define-make-variable-at-rule-execution-time/1909390#1909390Comment by e.James on Define make variable at rule execution timee.James2009-12-15T19:26:08Z2009-12-15T19:26:08ZAs far as scoping goes, the TMP variable would not be specific to that particular rule. It would exist in the global namesapce and could conflict with other variables that had the same name. Is that the desired behaviour? There are probably ways to work around it if need be.http://stackoverflow.com/questions/1909188/define-make-variable-at-rule-execution-time/1909390#1909390Comment by e.James on Define make variable at rule execution timee.James2009-12-15T19:23:38Z2009-12-15T19:23:38ZI didn't think you could do it without the <code>@echo</code>, but I tested it out, and it works. Good catch! I'll change it in my answer.http://stackoverflow.com/questions/1875935/how-do-you-manage-to-do-personal-projects-outside-workComment by e.James on How do you manage to do personal projects outside work?e.James2009-12-10T20:41:58Z2009-12-10T20:41:58ZSee also: (full disclosure: the accepted answer is mine) <a href="http://stackoverflow.com/questions/1077900/how-do-you-manage-your-own-small-project/1095972#1095972" rel="nofollow" title="how do you manage your own small project">stackoverflow.com/questions/1077900/…</a>