User pix0r - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T10:55:23Zhttp://stackoverflow.com/feeds/user/72http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/694848/custom-uiswitch-app-store-approval2Custom UISwitch & App Store approvalpix0r2009-03-29T15:50:21Z2009-11-13T14:07:49Z
<p>After doing some reading, I've found that you can customize the text and color on a UISwitch control. I'm curious if these methods will cause problems trying to get my app approved and included in the App Store.</p>
<p>Sample code taken from <a href="http://code.google.com/p/cookbooksamples/downloads/list" rel="nofollow">iPhone Developer's Cookbook Sample Code</a>:</p>
<pre><code>// Custom font, color
switchView = [[UICustomSwitch alloc] initWithFrame:CGRectZero];
[switchView setCenter:CGPointMake(160.0f,260.0f)];
[switchView setLeftLabelText: @"Foo"];
[switchView setRightLabelText: @"Bar"];
[[switchView rightLabel] setFont:[UIFont fontWithName:@"Georgia" size:16.0f]];
[[switchView leftLabel] setFont:[UIFont fontWithName:@"Georgia" size:16.0f]];
[[switchView leftLabel] setTextColor:[UIColor yellowColor]];
</code></pre>
http://stackoverflow.com/questions/830376/objective-c-singletons-and-llvm-clang-leak-warnings1Objective-C Singletons and LLVM/clang leak warningspix0r2009-05-06T16:10:37Z2009-11-12T22:15:34Z
<p>I'm using the singleton pattern in several places in an application, and I'm getting memory leak errors from <code>clang</code> when analyzing the code.</p>
<pre><code>static MyClass *_sharedMyClass;
+ (MyClass *)sharedMyClass {
@synchronized(self) {
if (_sharedMyClass == nil)
[[self alloc] init];
}
return _sharedMyClass;
}
// clang error: Object allocated on line 5 is no longer referenced after this point and has a retain count of +1 (object leaked)
</code></pre>
<p>I'm using these settings for <code>scan-build</code>:</p>
<p><code>scan-build -v -v -v -V -k xcodebuild</code></p>
<p>I'm fairly certain that the code in the singleton is just fine - after all, it's the same code referenced here on Stack Overflow as well as in Apple's documentation - but I would like to get the memory leak warning sorted out so my scan-build returns success.</p>
http://stackoverflow.com/questions/1723965/php-soap-server/1724004#17240042Answer by pix0r for PHP Soap (Server)pix0r2009-11-12T17:34:32Z2009-11-12T17:34:32Z<p>PHP does not have a built-in WSDL generation utility. I would recommend using <a href="http://framework.zend.com/manual/en/zend.soap.html#zend.soap.server" rel="nofollow"><code>Zend_Soap_Server</code></a> which supports WSDL generation via its <a href="http://framework.zend.com/manual/en/zend.soap.autodiscovery.html" rel="nofollow">Autodiscover</a> feature.</p>
http://stackoverflow.com/questions/1607/mechanisms-for-tracking-db-schema-changes19Mechanisms for tracking DB schema changespix0r2008-08-04T21:31:40Z2009-11-04T19:43:11Z
<p>What are the best methods for tracking and/or automating DB schema changes? Our team uses Subversion for version control and we've been able to automate some of our tasks this way (pushing builds up to a staging server, deploying tested code to a production server) but we're still doing database updates manually. I would like to find or create a solution that allows us to work efficiently across servers with different environments while continuing to use Subversion as a backend through which code and DB updates are pushed around to various servers.</p>
<p>Many popular software packages include auto-update scripts which detect DB version and apply the necessary changes. Is this the best way to do this even on a larger scale (across multiple projects and sometimes multiple environments and languages)? If so, is there any existing code out there that simplifies the process or is it best just to roll our own solution? Has anyone implemented something similar before and integrated it into Subversion post-commit hooks, or is this a bad idea?</p>
<p>While a solution that supports multiple platforms would be preferable, we definitely need to support the Linux/Apache/MySQL/PHP stack as the majority of our work is on that platform.</p>
http://stackoverflow.com/questions/1500060/view-controller-not-getting-shouldautorotatetointerfaceorientation-messages-on2View controller not getting -shouldAutorotateToInterfaceOrientation: messages on second load?pix0r2009-09-30T19:04:05Z2009-10-26T13:31:34Z
<p>I have a <code>UIViewController</code> that I'm using to control a "pop-up" view for viewing images throughout my application. It supports autorotation, as it automatically sizes the image to fit properly regardless of orientation. This works perfectly, but only the first time I initialize and display the view controller. When it closes, I am removing the <code>UIView</code> from my view hierarchy and releasing the view controller - but the next time I instantiate and add it to my view hierarchy, it stops receiving the <code>-shouldAutorotateToInterfaceOrientation</code> messages when the phone is rotated.</p>
<p>This is how I instantiate and display it:</p>
<pre><code>popupVC = [[PopupVC alloc] init];
[popupVC viewWillAppear:NO];
[[[UIApplication sharedApplication] keyWindow] addSubview:popupVC.view];
[popupVC viewDidAppear:NO];
</code></pre>
<p>this is how I remove/release it when it's finished:</p>
<pre><code>[popupVC viewWillDisappear:NO];
[popupVC.view removeFromSuperview];
[popupVC viewDidDisappear:NO];
[popupVC release];
popupVC = nil;
</code></pre>
<p>I've tried looping through <code>[[UIApplication sharedApplication] keyWindow]</code> subviews to see if somehow my popup view isn't on top, but it always is. And it has a different address each time so I do know that it's a different instance of the view controller class.</p>
<p>As requested, here is the complete <code>loadView</code> method from <code>PopupVC</code>:</p>
<pre><code>- (void)loadView {
UIView *myView = [[UIView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame];
myView.backgroundColor = self.overlayColor;
myView.autoresizesSubviews = NO;
myView.hidden = YES;
myView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
self.view = myView;
[myView release];
_isVisible = NO;
UIView *myMaskView = [[UIView alloc] initWithFrame:self.view.bounds];
myMaskView.backgroundColor = [UIColor clearColor];
myMaskView.clipsToBounds = YES;
myMaskView.hidden = YES;
myMaskView.autoresizesSubviews = NO;
myMaskView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[self.view addSubview:myMaskView];
self.imageMaskView = myMaskView;
[myMaskView release];
UIImageView *myImageView = [[UIImageView alloc] initWithFrame:CGRectZero];
myImageView.center = self.view.center;
myImageView.hidden = NO;
myImageView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleHeight;
[self.imageMaskView addSubview:myImageView];
self.imageView = myImageView;
[myImageView release];
UIButton *myImageButton = [UIButton buttonWithType:UIButtonTypeCustom];
myImageButton.frame = self.view.frame;
myImageButton.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleHeight;
[myImageButton addTarget:self action:@selector(clickImage:) forControlEvents:UIControlEventTouchUpInside];
[self.imageMaskView addSubview:myImageButton];
self.imageButton = myImageButton;
UIActivityIndicatorView *myActivityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
myActivityView.hidden = YES;
[self.view addSubview:myActivityView];
myActivityView.center = self.view.center;
self.activityView = myActivityView;
[myActivityView release];
}
</code></pre>
http://stackoverflow.com/questions/1558314/should-i-use-the-twitter-api-or-just-the-rss-feed/1558343#15583431Answer by pix0r for Should I use the Twitter API or just the RSS Feed?pix0r2009-10-13T05:31:05Z2009-10-13T05:37:26Z<p>The RSS feed is actually <em>part</em> of the API, so you should be fine as long as you're able to parse RSS. The RSS feed is public for public profiles and does not require an API key.</p>
<p>More info: <a href="http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-user%5Ftimeline" rel="nofollow">Twitter REST API Method: statuses user_timeline</a></p>
<p>Assuming you're pulling this down on the server side, make sure you cache the feed so you don't pull one down for every page load.</p>
http://stackoverflow.com/questions/1558295/php-problem-with-associative-arrays/1558303#15583033Answer by pix0r for Php: problem with associative arrays....pix0r2009-10-13T05:14:17Z2009-10-13T05:14:17Z<pre><code>foreach ($myArray as $key => $value) {
echo "id: $key value: $value\n";
}
</code></pre>
http://stackoverflow.com/questions/1557848/php-imagejpeg-mime-type/1557852#15578520Answer by pix0r for php imagejpeg mime typepix0r2009-10-13T01:44:48Z2009-10-13T01:44:48Z<p>It sounds like you're dumping the contents of the file to the browser and not actually telling the browser what type of file it is. Try adding a Content-type header before you output your image to the browser:</p>
<pre><code>header('Content-type: image/jpeg');
</code></pre>
http://stackoverflow.com/questions/1557077/take-some-object-in-nsarray-and-put-it-randomly-in-labels/1557277#15572771Answer by pix0r for Take some object in NSArray and put it randomly in labelspix0r2009-10-12T22:23:24Z2009-10-12T22:23:24Z<p>Your general approach is good here, but your looping logic seems flawed. I'm going to clean a few things up and see if that helps you.</p>
<p>First of all let's put your labels into their own array, to make this easier to deal with. This will let us access each label by an index rather than by its variable name as we create our loop later.</p>
<pre><code>NSArray *myLabels = [NSArray arrayWithObjects:texte1, texte2, texte3, texte4, texte5, texte6, nil];
</code></pre>
<p>Now let's create a mutable array with your phrases - this can be done using a loop because you know the keys you're looking for have sequential digits:</p>
<pre><code>// This is your existing code that reads the phrases from a plist:
NSArray* tableau = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"codes" ofType:@"plist"]];
NSDictionary* phrase = [tableau objectAtIndex:nombreChoisi];
// Now read the phrases into a mutable dictionary:
NSMutableArray *myPhrases = [NSMutableArray arrayWithCapacity:6];
for (int i = 1; i <= 6; i++) {
NSString *myPhrase = [phrase objectForKey:[NSString stringWithFormat:@"texte%d", i]];
[myPhrases addObject:myPhrase];
}
</code></pre>
<p>Now we need to create a loop to randomly pull phrases out of the mutable dictionary and assign them to a random label. We'll run through this loop six times, each time picking a random phrase and assigning it to a label. After assigning the phrase, we'll remove it from the dictionary so it won't be used again.</p>
<pre><code>for (int i = 0; i < 6; i++) {
// Choose a random phrase
int randIdx = random() % [myPhrases count];
NSString *randPhrase = [myPhrases objectAtIndex:randIdx];
// Assign the next label's text
[myLabels objectAtIndex:i].text = randPhrase;
// Remove the phrase from the mutable dictionary so it isn't used again:
[myPhrases removeObjectAtIndex:randIdx];
}
</code></pre>
http://stackoverflow.com/questions/1120606/long-polling-with-nsurlconnection2Long polling with NSURLConnectionpix0r2009-07-13T16:34:16Z2009-10-10T02:13:25Z
<p>I'm working on an iPhone application which will use long-polling to send event notifications from the server to the client over HTTP. After opening a connection on the server I'm sending small bits of JSON that represent events, as they occur. I am finding that <code>-[NSURLConnectionDelegate connection:didReceiveData]</code> is not being called until after I close the connection, regardless of the cache settings I use when creating the NSURLRequest. I've verified that the server end is working as expected - the first JSON event will be sent immediately, and subsequent events will be sent over the wire as they occur. Is there a way to use NSURLConnection to receive these events as they occur, or will I need to instead drop down to the CFSocket API?</p>
<p>I'm starting to work on integrating CocoaAsyncSocket, but would prefer to continue using NSURLConnection if possible as it fits much better with the rest of my REST/JSON-based web service structure.</p>
http://stackoverflow.com/questions/1544807/json-object-max-size/1544817#15448174Answer by pix0r for JSON object max size?pix0r2009-10-09T16:28:18Z2009-10-09T17:00:29Z<p>This is probably due to your server's configuration. Check php.ini for the setting <code>max_post_size</code> and ensure that it is sufficiently large to post your data. Also check your web server settings - Apache has a <code>LimitRequestBody</code> directive which could be causing your problem. Finally, check your web server and PHP error logs to see if the large post is triggering any errors.</p>
http://stackoverflow.com/questions/1534768/php-ranking-system-array-sort/1534784#15347842Answer by pix0r for PHP Ranking System Array Sortpix0r2009-10-07T23:31:43Z2009-10-07T23:31:43Z<pre><code>// $full_array is your array of category ID's with projects/votes as nested arrays
foreach ($full_array as $cat_id => $projects) {
asort($projects, SORT_NUMERIC);
$full_array[$cat_id] = $projects;
}
// Each category ID within $full_array is now sorted
</code></pre>
http://stackoverflow.com/questions/1527490/play-mms-streams-on-my-site/1527507#15275072Answer by pix0r for Play mms:// streams on my sitepix0r2009-10-06T19:13:29Z2009-10-06T19:13:29Z<p>MMS will require the user to have Windows Media Player installed. I believe you can embed mms:// content directly in an HTML page using <code><object></code> and/or <code><embed></code> tags and if it's installed, the WMP browser plugin will play the content.</p>
<p>Here's an <a href="http://cit.ucsf.edu/embedmedia/step2.php?mediatype=WindowsMedia" rel="nofollow">Embedded Media HTML Generator</a>; enter your mms:// url here and use the generated HTML in your video player page template.</p>
http://stackoverflow.com/questions/1527364/php-robust-include-to-handle-errors/1527399#15273991Answer by pix0r for PHP robust include to handle errors?pix0r2009-10-06T18:56:31Z2009-10-06T18:56:31Z<p>Would it be possible to change your architecture and turn "badfile.php" into a web service? Instead of including it directly into your codebase, you would call it over the network and parse or include its output. This will get you around parse errors, you could also avoid potentially malicious code if you have badfile.php's environment limited appropriately (using safe_mode, or running a separate web server process with limited privileges).</p>
http://stackoverflow.com/questions/1522483/phpflickr-and-getting-images-from-flickr/1522514#15225140Answer by pix0r for phpFlickr and getting images from Flickrpix0r2009-10-05T21:31:02Z2009-10-05T21:31:02Z<p>Tags should be comma-separated according to Flickr's API docs. I checked out phpFlickr.php and they are basically just passing your parameters directly up to Flickr.</p>
<p><a href="http://www.flickr.com/services/api/flickr.photos.search.html" rel="nofollow">Flickr Service API</a></p>
http://stackoverflow.com/questions/1512225/how-does-one-put-an-image-in-each-section-of-a-table-view/1512264#15122640Answer by pix0r for How does one put an image in each section of a table view?pix0r2009-10-02T23:19:58Z2009-10-02T23:19:58Z<pre><code>// snip
case STATUS_SECTION:
text = @"Status Entry";
cell.accessoryType = UITableViewAccessoryTypeDisclosureIndicator;
cell.editingAccessoryType = UITableViewCellAccessoryNone;
[cell.imageView setImage:[UIImage imageNamed:@"any-image-in-my-project.png"]];
break;
// snip
</code></pre>
http://stackoverflow.com/questions/1511708/trying-to-use-ibaction-to-load-a-viewcontroller-that-doesnt-have-a-nib-file/1511759#15117590Answer by pix0r for Trying to use IBAction to load a ViewController that doesn't have a Nib filepix0r2009-10-02T20:58:38Z2009-10-02T23:08:10Z<p>If you are already setting this view controller as a sub-view-controller of your UITabBarController, I'd use either <code>setSelectedIndex:</code> or <code>setSelectedViewController</code> on the UITabBarController. If you don't do it this way, you're going to have issues because you may have loaded that view controller's view in two different places (under the tab bar, and wherever you're placing it when you load it manually).</p>
<p>Here's some sample code. I'm assuming that your application delegate has an instance variables <code>myTabBarController</code>, and that you're putting two view controllers in the UITabBarController: <code>myFirstViewController</code> and <code>mySecondViewController</code>. I'll assume that you've set both of these view controllers as children of the tab bar controller in your NIB file.</p>
<pre><code>- (void)buttonPressed:(id)sender {
[myTabBarController setSelectedViewController:mySecondViewController];
// Alternately, you could set the index rather than the actual VC:
// [myTabBarController setSelectedIndex:1]
}
</code></pre>
<p>If your issue is related to loading a view controller without a NIB file, make sure you're setting up your view hierarchy correctly in that view controller's <code>loadView</code> method.</p>
http://stackoverflow.com/questions/1511718/how-to-count-the-occurences-of-multiple-patterns-in-a-long-string/1511743#15117433Answer by pix0r for How to count the occurences of multiple patterns in a long string?pix0r2009-10-02T20:53:35Z2009-10-02T20:53:35Z<p>I'd just use a hash table (associative array) and loop through your countries:</p>
<pre><code>// Count:
$country_names = array('Afghanistan', 'Bulgaria', 'United States', ...);
$country_count = array();
foreach ($country_names as $name) {
$country_count[$name]++;
}
// Then display:
foreach ($country_names as $name) {
echo "Found " . $country_count[$name] . " occurrences of $name.\n";
}
</code></pre>
http://stackoverflow.com/questions/1511445/how-are-these-nsmutablearray-initializations-different/1511487#15114871Answer by pix0r for how are these NSMutableArray initializations different?pix0r2009-10-02T19:54:05Z2009-10-02T19:54:05Z<p>Your second line of code is not retaining the NSArray, which is causing a crash. You'll need to call <code>[array1 retain]</code> after you call <code>arrayWithCapacity:</code>.</p>
<p>There's quite a bit of useful information in this post: <a href="http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c">Understanding reference counting with Cocoa / Objective C</a></p>
<p>In general, if you're calling a class method that doesn't start with "new" or "init" (e.g. <code>arrayWithCapacity</code>), you can usually assume that the returned object will be autoreleased.</p>
http://stackoverflow.com/questions/1505266/java-or-python-for-an-intermediate-php-guy-career-advice/1505300#15053004Answer by pix0r for Java or Python for an intermediate PHP guy. Career advice.pix0r2009-10-01T17:24:22Z2009-10-01T17:24:22Z<p>I've been using PHP primarily for my entire career, but I find it immensely useful to learn other languages and frameworks as well as a source of new ideas and as a way of simply exercising my brain. It's never a bad idea to learn something new.</p>
<p>That being said, because you're asking for career advice, I'd have to point out that at least in my location there has been no shortage of PHP jobs. Improving upon what you already know (just learning more PHP) may be an easier way to increase your value to potential employers. You might look into learning some specific technologies that employers might look for - for example Drupal or Wordpress.</p>
<p>In the end, I'd say it's most important that you're doing something that you enjoy. If you are sick of PHP and it's numerous shortcomings, maybe you'd be happier in a Python or Ruby world. If you're looking to move away from the small-ish web agency world and work on bigger corporate projects, or you simply want something with more structure, think about Java or .NET.</p>
http://stackoverflow.com/questions/1505232/dot-notation-dealloc/1505244#150524410Answer by pix0r for Dot notation dealloc?pix0r2009-10-01T17:10:46Z2009-10-01T17:18:49Z<p>It's bad practice to use your setter methods in <code>-dealloc</code>. Use <code>[name release]</code> instead.</p>
<p>Calling setters during <code>-dealloc</code> may have unintended consequences. If using KVO, setting properties may trigger other code to run causing side effects because your object has already started releasing instance variables. Even when not using KVO this may cause potential problems if your setter method relies on other instance variables that may have already been released.</p>
<p>(updated to reflect comments)</p>
http://stackoverflow.com/questions/1500233/control-cursor-position-in-uitextfield/1500271#15002711Answer by pix0r for Control cursor position in UITextFieldpix0r2009-09-30T19:43:34Z2009-09-30T19:43:34Z<p>I don't think there is a way to place the cursor at a particular place in your <code>UITextField</code> (unless you got very tricky and simulated a touch event). Instead, I'd handle formatting when the user has <em>finished</em> editing their text (in <code>textFieldShouldEndEditing:</code>) and if their entry is incorrect, don't allow the text field to finish editing.</p>
http://stackoverflow.com/questions/1494899/php-pregmatch-regex/1494920#14949200Answer by pix0r for php preg_match regexpix0r2009-09-29T21:00:24Z2009-09-29T21:00:24Z<pre><code>$pat = "/^[\w. ,\\/:_()'\"-]/";
</code></pre>
http://stackoverflow.com/questions/1494041/getting-error-while-using-fdmb-sqlite-wrapper-for-iphone/1494047#14940470Answer by pix0r for Getting error while using FDMB sqlite wrapper for iPhonepix0r2009-09-29T17:56:21Z2009-09-29T17:56:21Z<p>Make sure you're linking to the SQLite library! In the left pane of your project window in Xcode, expand Targets, click on your target, and command-i to get info. Under the "General" tab you will see "Linked Libraries". Verify that libsqlite3.0.dylib is in the list here, and if not, click the "plus" icon and add it.</p>
http://stackoverflow.com/questions/1493357/curl-array-from-amazon-s3-php-class/1493368#14933680Answer by pix0r for cURL Array from Amazon S3 PHP Classpix0r2009-09-29T15:39:52Z2009-09-29T15:39:52Z<p>Looks like this is just an associative array. You can access elements using <code>$arrayName['keyName']</code>:</p>
<pre><code>$info = $s3->getObjectInfo($bucketName, baseName($uploadFile));
$size = $info['size'];
echo "Size: $size";
</code></pre>
http://stackoverflow.com/questions/1478722/iphone-dev-tabbaritem-help/1478757#14787570Answer by pix0r for iphone-dev: TabBarItem helppix0r2009-09-25T18:01:13Z2009-09-25T18:07:54Z<p>Can you include the code where you set up the <code>UITabBarController</code> <code>tabBarController</code>? I'm guessing that you are not properly setting the <code>viewControllers</code> property. Use <code>UITabBarController -setViewControllers:animated:</code> with an array of view controllers to initialize the tab bar controller.</p>
<p>Try something like this:</p>
<pre><code>mytable = [[MyTableController alloc] initWithStyle:UITableViewStylePlain];
UINavigationController *mynav = [[UINavigationController alloc] initWithRootViewController:mytable];
[tabBarController setViewControllers:[NSArray arrayWithObject:mynav] animated:NO];
[mynav release];
[mytable release];
[tabBarController viewWillAppear:NO];
[window addSubview:[tabBarController view]];
[tabBarController viewDidAppear:NO];
</code></pre>
http://stackoverflow.com/questions/1472805/what-is-the-best-mvc-doctrine2-datamapper-practice/1472890#14728900Answer by pix0r for What is the best MVC, Doctrine2, Datamapper practice?pix0r2009-09-24T16:47:16Z2009-09-24T17:49:11Z<p>Regarding your abstraction question, I'd say it really depends on the lifetime of this project and how portable your code needs to be. If it's a one-off website that will need minimal maintenance, it would probably save you some time to forego the additional abstraction layer and just write Doctrine code in your controllers. However, if you're planning to reuse this code, move it to different platforms, or maintain it for a long period of time, I'd take the time to add that abstraction because it will give you a lot more flexibility.</p>
<p>If you're still researching frameworks, take a look at <a href="http://www.kohanaphp.com/" rel="nofollow">Kohana</a>. It's basically a lightweight rewrite of CodeIgniter written for PHP5.</p>
http://stackoverflow.com/questions/1135524/iphone-whole-word-search/1467984#14679840Answer by pix0r for iPhone 'Whole Word' Searchpix0r2009-09-23T19:02:07Z2009-09-23T20:57:09Z<p>I just solved this problem by adding a simple category on NSString to do a word boundary search. Here's the code:</p>
<pre><code>@interface NSString (FullWordSearch)
// Search for a complete word. Does not match substrings of words. Requires fullWord be present
// and no surrounding alphanumeric characters.
- (BOOL)containsFullWord:(NSString *)fullWord;
@end
@implementation NSString (FullWordSearch)
- (BOOL)containsFullWord:(NSString *)fullWord {
NSRange result = [self rangeOfString:fullWord];
if (result.length > 0) {
if (result.location > 0 && [[NSCharacterSet alphanumericCharacterSet] characterIsMember:[self characterAtIndex:result.location - 1]]) {
// Preceding character is alphanumeric
return NO;
}
if (result.location + result.length < [self length] && [[NSCharacterSet alphanumericCharacterSet] characterIsMember:[self characterAtIndex:result.location + result.length]]) {
// Trailing character is alphanumeric
return NO;
}
return YES;
}
return NO;
}
@end
</code></pre>
http://stackoverflow.com/questions/1467021/what-is-the-php-ini-setting-that-allows-response-outputs/1467031#14670311Answer by pix0r for What is the php.ini setting that allows response outputs?pix0r2009-09-23T16:10:09Z2009-09-23T16:53:31Z<p>I believe you're looking for <a href="http://us.php.net/manual/en/ini.core.php" rel="nofollow"><code>short_open_tag</code></a></p>
<p>Note that using short tags is generally considered bad practice because it reduces code portability. It's best to use the standard <code><?php echo "..."; ?></code> as this will run regardless of server settings.</p>
http://stackoverflow.com/questions/675433/custom-colors-in-uitabbar0Custom colors in UITabBarpix0r2009-03-23T22:12:46Z2009-09-21T09:25:19Z
<p>Is it possible to use custom colors and background images in a UITabBar? I realize that Apple would like everyone to use the same blue and gray tab bars, but is there any way to customize this?</p>
<p>Second, even I were to create my own TabBar-like view controller, along with custom images, would this violate Apple's Human Interface Guidelines?</p>
http://stackoverflow.com/questions/830376/objective-c-singletons-and-llvm-clang-leak-warnings/1725790#1725790Comment by pix0r on Objective-C Singletons and LLVM/clang leak warningspix0r2009-11-13T23:24:33Z2009-11-13T23:24:33ZThanks, looks nice.. Unfortunately I'm actually on the iPhone platform so that's not an option yet.http://stackoverflow.com/questions/826265/simple-php-form-attachment-to-email-code-golf/1673281#1673281Comment by pix0r on Simple PHP form: Attachment to email (code golf)pix0r2009-11-05T17:38:38Z2009-11-05T17:38:38ZThis is the best response so far in my opinion, as you are the only one to provide full code (which the question specifically asks for). +1.http://stackoverflow.com/questions/1557258/htaccess-problem-no-input-file-specifiedComment by pix0r on .htaccess problem: No input file specified.pix0r2009-10-12T22:27:36Z2009-10-12T22:27:36ZUpload a PHP file with the text: <code><?php phpinfo(); ?></code> - accessing that file will print out all of the server settings including Apache version and possibly a list of Apache modules. You'll need to ensure mod_rewrite is installed in order to use these features.http://stackoverflow.com/questions/1544807/json-object-max-size/1544817#1544817Comment by pix0r on JSON object max size?pix0r2009-10-09T17:01:46Z2009-10-09T17:01:46Z(and yes, 64M == 64 megabytes).http://stackoverflow.com/questions/1544807/json-object-max-size/1544817#1544817Comment by pix0r on JSON object max size?pix0r2009-10-09T17:00:45Z2009-10-09T17:00:45ZAlso check httpd.conf for <code>LimitRequestBody</code>http://stackoverflow.com/questions/1500060/view-controller-not-getting-shouldautorotatetointerfaceorientation-messages-on/1500837#1500837Comment by pix0r on View controller not getting -shouldAutorotateToInterfaceOrientation: messages on second load?pix0r2009-10-09T15:55:49Z2009-10-09T15:55:49ZThe view covers the entire screen. I've added the <code>loadView</code> method from <code>PopupVC</code> (see original question).http://stackoverflow.com/questions/1534768/php-ranking-system-array-sort/1534784#1534784Comment by pix0r on PHP Ranking System Array Sortpix0r2009-10-08T18:14:27Z2009-10-08T18:14:27ZThis code will leave cat_id intact - it will sort projects within the cat_id based on # of votes. If you want it descending, pass the flag SORT_DESC to <code>asort()</code>.http://stackoverflow.com/questions/1527490/play-mms-streams-on-my-site/1527507#1527507Comment by pix0r on Play mms:// streams on my sitepix0r2009-10-06T20:47:46Z2009-10-06T20:47:46ZI believe the cross-platform VLC media player has a browser plugin that will support streaming Windows Media. (I could be wrong; check <a href="http://www.videolan.org/vlc/" rel="nofollow">videolan.org/vlc</a> for details)http://stackoverflow.com/questions/1526798/good-resources-for-learning-advanced-oop-features-in-php-5/1526833#1526833Comment by pix0r on Good resources for learning advanced OOP features in PHP 5?pix0r2009-10-06T17:01:25Z2009-10-06T17:01:25ZGreat resource, thank you!http://stackoverflow.com/questions/1511708/trying-to-use-ibaction-to-load-a-viewcontroller-that-doesnt-have-a-nib-file/1511759#1511759Comment by pix0r on Trying to use IBAction to load a ViewController that doesn't have a Nib filepix0r2009-10-05T15:12:09Z2009-10-05T15:12:09ZSympleMyne, would you mind editing your original post with this additional code? It's difficult to read in a comment as there is no formatting.http://stackoverflow.com/questions/1505232/dot-notation-dealloc/1505244#1505244Comment by pix0r on Dot notation dealloc?pix0r2009-10-01T17:14:57Z2009-10-01T17:14:57ZI've been searching for the reference, but to be honest I'm not sure why this is frowned upon. I just know that I was corrected because I used to do the same thing. The only thing I can think of is that your setter method may depend on other ivars or properties that have already been released.http://stackoverflow.com/questions/1500060/view-controller-not-getting-shouldautorotatetointerfaceorientation-messages-on/1500837#1500837Comment by pix0r on View controller not getting -shouldAutorotateToInterfaceOrientation: messages on second load?pix0r2009-10-01T17:04:38Z2009-10-01T17:04:38ZSadly no - my view controller never receives <code>-canBecomeFirstResponder:</code>. (But it sounded promising!)http://stackoverflow.com/questions/1500060/view-controller-not-getting-shouldautorotatetointerfaceorientation-messages-on/1500837#1500837Comment by pix0r on View controller not getting -shouldAutorotateToInterfaceOrientation: messages on second load?pix0r2009-09-30T22:08:08Z2009-09-30T22:08:08ZAlthough now that I look I do have some debugging code in <code>-didRotateFromInterfaceOrientation:</code> and it's not being fired either.http://stackoverflow.com/questions/1500060/view-controller-not-getting-shouldautorotatetointerfaceorientation-messages-on/1500837#1500837Comment by pix0r on View controller not getting -shouldAutorotateToInterfaceOrientation: messages on second load?pix0r2009-09-30T22:06:07Z2009-09-30T22:06:07ZGood point - although I am not responding to the event here, I am debugging this the wrong way. Thanks for pointing that out.http://stackoverflow.com/questions/1500060/view-controller-not-getting-shouldautorotatetointerfaceorientation-messages-onComment by pix0r on View controller not getting -shouldAutorotateToInterfaceOrientation: messages on second load?pix0r2009-09-30T19:33:41Z2009-09-30T19:33:41ZI set it up in a <code>UITableViewDelegate</code> method, when the user selects an image to show. My <code>PopupVC -loadView</code> method sets up the view and subviews it uses. I got in the habit of explicitly calling <code>-viewWillAppear:</code> after finding that my <code>UITabBarController</code>'s didn't work properly unless you send them the message.. just a habit I guess.