User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T10:14:31Zhttp://stackoverflow.com/feeds/user/41806http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/206183/how-can-i-force-subversion-to-commit-an-unchanged-file/1044792#10447920Answer by sieroaoj for How can I force subversion to commit an unchanged file?sieroaoj2009-06-25T16:07:44Z2009-07-03T14:34:08Z<p>I have the same problem with a trueCrypt volume.</p>
<p>I added a new property (as suggested above) "forceCommit1" and them I was able to commit the volume file. but only the property was commited not the contents of the file.</p>
<p>I removed the file and added it again to the svn</p>
http://stackoverflow.com/questions/1074320/remove-uiwebview-shadow/1077191#10771910Answer by sieroaoj for Remove UIWebView Shadow?sieroaoj2009-07-02T23:27:29Z2009-07-02T23:27:29Z<p>I looked at the class properties and didn't find anything there but I can think of two "cover up" strategies:<br/><br/>
<b>1.</b> You can use another view (parent of the web view) to clip the webview bounds.<br/>
<b>2.</b> You can add another view on top of the webview to cover the needed area with a color that matches the background, you can use an uiimage with a transparent area in the center. <br/>
<br/>
By the way I don't like this standard background of the table views :P, but changing it can be a pain in the ass :P</p>
http://stackoverflow.com/questions/994359/update-results-of-nsfetchedresultscontroller-without-a-new-fetch/1069282#10692821Answer by sieroaoj for Update results of NSFetchedResultsController without a new fetchsieroaoj2009-07-01T14:02:31Z2009-07-02T23:06:54Z<p>just have your problem and yes apparently using notifications is the unique way you can make a tableview refresh when the table used a nsfetchedresults controller.</p>
<p>like in the core databooks sample:<br/>
<b>step1:</b> add an observer to the NSNotificationCenter for the notification NSManagedObjectContextDidSaveNotification<br/>
<b>step2:</b> save your context (the notification trigger to your selector)<br/>
<b>step3:</b> in your selector method: merge the changes in the context using the method mergeChangesFromContextDidSaveNotification<br/>
<b>step4:</b> remove the observer from the notification center.<br/><br/></p>
<p>Personally I would like to bypass the notification certer and only tell the context refresh yourself dammit :)</p>
http://stackoverflow.com/questions/190908/how-can-i-disable-the-uitableview-selection-highlighting/1062825#10628250Answer by sieroaoj for How can I disable the UITableView selection highlighting?sieroaoj2009-06-30T10:01:20Z2009-06-30T10:13:13Z<p>From the UITableViewDelegate Protocol you can use the method willSelectRowAtIndexPath
and return nil if you don't want the row selected.</p>
<p>In the same way the you can use the willDeselectRowAtIndexPath method and return nil if you don't want the row to deselect.</p>
http://stackoverflow.com/questions/1052130/iphone-sdk-3-0-in-app-email-changing-navigation-bar-tint-color/1053836#10538360Answer by sieroaoj for iPhone SDK 3.0 in-app email - changing navigation bar tint colorsieroaoj2009-06-27T23:11:07Z2009-06-27T23:11:07Z<p>Yes it is possible.</p>
<p>Just add a objective-c category in the UINavigationBar class overriding the drawInRect Method.
This way you can do want. </p>
<p>The disadvantage, all your navigation bars will change :)</p>
http://stackoverflow.com/questions/670036/any-good-sql-server-management-software-for-mac-os/863647#8636473Answer by sieroaoj for Any good SQL Server Management software for Mac OS?sieroaoj2009-05-14T14:27:07Z2009-06-05T13:56:56Z<p>I use windows Remote Desktop connection in my mac to connect windows SQL Servers. And then use SQL Management Studio. Never fails :)</p>
http://stackoverflow.com/questions/650437/iphone-uiscrollview-with-uibuttons-how-to-recreate-springboard/930216#9302160Answer by sieroaoj for iPhone UIScrollview with UIButtons - how to recreate springboard?sieroaoj2009-05-30T17:55:50Z2009-05-30T17:55:50Z<p>Another way is: <br/>1. Substitute de button by a simple custom UIView<br/>2. Put the flag "userInterationEnable = yes;" on the init method<br/> 3. In the view override the UIResponder method "touchesEnded" here you can trigger the action you need like a button.</p>
http://stackoverflow.com/questions/601818/when-should-one-use-uitableview-reloaddata-and-defect-associated/863880#8638800Answer by sieroaoj for When should one use UITableView reloadData ? And defect associated ;)sieroaoj2009-05-14T15:06:02Z2009-05-14T16:12:12Z<p>You should minimize reloads in tableviews, and use it only when you cannot update the table other way.<br />
For example when deleting a row you do not need a reload, just use deleteRowsAtIndexPaths or deleteSections as needed.<br/><br/>
Other views you can just update their properties. For example if you have a label in the footer, you just need to set its text property. You do not need a table reload.
<br/><br/>
I think you cannot edit directly some properties of the cells outside cellForRowAtIndexPath method. In cases like this you will need a table reload that will call cellForRowAtIndexPath method.</p>
http://stackoverflow.com/questions/769293/get-specific-version-of-a-column/863680#8636800Answer by sieroaoj for Get specific "version" of a columnsieroaoj2009-05-14T14:35:13Z2009-05-14T14:41:04Z<p>I would sugest you one approach:
<br /><br />
1. create a temp table, one adittional column for a flag "otherbd";<br />
2. throw everything from the 2 tables in there; <br />
3. delete the lines you don't want;</p>