User Kendall Helmstetter Gelner - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:06:01Z http://stackoverflow.com/feeds/user/6330 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1814559/shared-folders-and-xcode/1814700#1814700 0 Answer by Kendall Helmstetter Gelner for Shared Folders and XCode Kendall Helmstetter Gelner 2009-11-29T05:02:11Z 2009-11-29T05:02:11Z <p>If you use an SCM, the best approach so far is to check in the project.pbxproj file (inside your .xcodeproj bundle). Mostly that merges just fine, sometimes you have to manually merge but in those cases 90% of the time you simply allow both sides of the merge.</p> <p>My .gitignore file looks like:</p> <pre><code># xcode noise build/* *.pbxuser *.mode1v3 *.perspectivev3 *~ *.mode2v3 </code></pre> <p>You could use a similar ignore set of directives for other SCM systems.</p> <p>Folder references are OK for images (with the caveat you have to do a Clean if you change any image contents) but are not great for source. </p> http://stackoverflow.com/questions/1807656/how-to-retrieve-and-store-call-log-in-iphone-in-objective-c/1808623#1808623 1 Answer by Kendall Helmstetter Gelner for how to retrieve and store call log in iphone.in objective-c Kendall Helmstetter Gelner 2009-11-27T12:55:57Z 2009-11-27T12:55:57Z <p>Sorry, not possible to access any of that.</p> http://stackoverflow.com/questions/1807869/compile-error-on-xcode/1808613#1808613 1 Answer by Kendall Helmstetter Gelner for compile error on Xcode Kendall Helmstetter Gelner 2009-11-27T12:54:41Z 2009-11-27T12:54:41Z <p>Looks like you need to include the MediaFramework in your project. </p> http://stackoverflow.com/questions/1789832/objective-c-class-abstraction-and-accessing-those-variables/1792572#1792572 0 Answer by Kendall Helmstetter Gelner for Objective-C, class abstraction and accessing those variables Kendall Helmstetter Gelner 2009-11-24T20:03:31Z 2009-11-24T20:03:31Z <p>First of all, I agree with Eimantas that your init method is missing a call to [super init] (the value of which you should be returning, read up on what a normal init method looks like).</p> <p>But as for the init_deck - just what method in your view controller do you have those two lines? I'm thinking it's not being called more based on where the calling code is than anything else (although pce_Engine may also be nil when that code is called in which case it would not work at all).</p> http://stackoverflow.com/questions/1791162/instrument-finds-leaks-on-simulator-but-not-on-the-device/1792524#1792524 0 Answer by Kendall Helmstetter Gelner for Instrument finds leaks on Simulator, but not on the Device Kendall Helmstetter Gelner 2009-11-24T19:55:54Z 2009-11-24T19:55:54Z <p>Did you have NSZombieEnabled set for your simulator build? That will cause a lot of leaks to be reported.</p> http://stackoverflow.com/questions/1780035/how-can-i-use-a-bit-type-in-my-iphone-app/1780107#1780107 3 Answer by Kendall Helmstetter Gelner for How can I use a bit type in my iPhone app? Kendall Helmstetter Gelner 2009-11-22T21:46:07Z 2009-11-22T21:46:07Z <p>There is also a CFBitVector, in which you could hold sets of values...</p> http://stackoverflow.com/questions/1771442/cocos2d-shooting-game-problem/1776170#1776170 0 Answer by Kendall Helmstetter Gelner for Cocos2d - Shooting Game Problem Kendall Helmstetter Gelner 2009-11-21T17:45:59Z 2009-11-21T17:45:59Z <p>I would try asking this also over at <a href="http://iphonegamedev.stackexchange.com/" rel="nofollow">iPhoneGameDev</a>, it's a StackOverflow like site specifically for iPhone game development - you might find someone there who knows Cocos2D well and can suggest an approach.</p> http://stackoverflow.com/questions/1775479/run-loops-and-threads-in-apples-cocoaxmlparser-example/1776148#1776148 2 Answer by Kendall Helmstetter Gelner for Run-loops and threads in Apple's CocoaXMLParser example Kendall Helmstetter Gelner 2009-11-21T17:39:42Z 2009-11-21T17:39:42Z <p>In that code, the run loop is basically just being told to run forever, so that that thread can continue to process incoming background data from the NSURLConnection. Even though a run-loop is created for you, by default the thread would terminate when that method ended.</p> <p>In general when doing something like that it's easier to put everything in an NSOperation which then goes in an NSOperationQueue (although if you are implementing NSUrlConnection callbacks you have to provide a few extra methods in the NSOperation class).</p> http://stackoverflow.com/questions/1775571/iphone-dev-question-nsmutableurlrequest-cannt-set-the-get-to-my-from-in-php/1776122#1776122 0 Answer by Kendall Helmstetter Gelner for iPhone dev question: NSMutableURLRequest, cannt set the _GET to my from in php Kendall Helmstetter Gelner 2009-11-21T17:29:14Z 2009-11-21T17:29:14Z <p>Try setting the HTTP method to be POST instead of GET. Form submits are use POST.</p> <p>In any debugging of HTTP calls, I find it really helpful to use the <a href="http://www.charlesproxy.com/" rel="nofollow">Charles</a> Web debugging proxy, you can see exactly what the HTTP traffic looks like from a browser and then duplicate that request as closely as possible with your code request.</p> http://stackoverflow.com/questions/1776045/how-to-detect-edit-mode-on-iphone-uitableview/1776117#1776117 0 Answer by Kendall Helmstetter Gelner for How to detect edit mode on iphone UITableView Kendall Helmstetter Gelner 2009-11-21T17:27:11Z 2009-11-21T17:27:11Z <p>That method tells you when a user is editing a Cell, not put the table into editing mode. There is a method called when editng mode is entered, to ask each cell if it can be edited:</p> <pre><code>- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath </code></pre> <p>I don't think overriding setEditing:animated: makes sense, since you would have to subclass UITableView which is extra work and a class you need for no other reason, not to mention it would have to communicate the fact that editing had been turned on back to the controller.</p> <p>One other option is to simply add the Edit button yourself - it's a built in UIBarButtonSystemItem, you can add it and then have it call your own method in which you do something specific then call setEditing:animated: on the UITableView itself.</p> <p>The idea behind editing is that when editing is enabled, each cell is told to go to edit mode, and as asked if there are any specific editing controls that should be applied. So in theory there's no need to detect entry into editing mode beyond changing the appearance of cells. What are you trying to do when editing mode is entered?</p> http://stackoverflow.com/questions/1773387/iphone-cglayer-using-17-times-more-memory-as-expected/1773991#1773991 0 Answer by Kendall Helmstetter Gelner for IPHONE: CGLayer using 17 times more memory as expected Kendall Helmstetter Gelner 2009-11-21T00:08:55Z 2009-11-21T00:08:55Z <p>Are you sure you are creating the layers without alpha channels? I think by default there is an alpha channel, so it's four bytes instead of three...</p> http://stackoverflow.com/questions/1764877/iphone-app-running-while-screen-locked/1766656#1766656 1 Answer by Kendall Helmstetter Gelner for iPhone app running while screen locked Kendall Helmstetter Gelner 2009-11-19T21:19:34Z 2009-11-19T21:19:34Z <p>You have to leave the screen unlocked. But that does not mean you have to leave GPS enabled. You can shut down the GPS monitor and awaken it every few minutes, that and an all-black "screensaver" that comes on after a minute should cut down on the drain quite a lot.</p> http://stackoverflow.com/questions/1765599/how-to-create-custom-uialertview/1766635#1766635 0 Answer by Kendall Helmstetter Gelner for How to create custom UIAlertView Kendall Helmstetter Gelner 2009-11-19T21:16:18Z 2009-11-19T21:16:18Z <p>What about working around the issue by hiding the status bar when the alert is displayed? That would make it more "alerty" anyway...</p> http://stackoverflow.com/questions/1766339/when-should-i-give-out-my-iphone-udid/1766614#1766614 1 Answer by Kendall Helmstetter Gelner for When should I give out my iPhone UDID? Kendall Helmstetter Gelner 2009-11-19T21:14:23Z 2009-11-19T21:14:23Z <p>There are not really any privacy risks in giving out a phone ID, and as noted you need to give it out to be able to run test builds on your phone.</p> <p>I would say though, that if you want to hire someone to develop an app for you you should certainly trust them enough to give them what they ask for, since you are going to be running an application on your phone from them that has not gone through any approval process (though the sandbox helps a lot there as there's not much harm they can do).</p> http://stackoverflow.com/questions/1763168/xcode-missing-inline-test-results/1764761#1764761 1 Answer by Kendall Helmstetter Gelner for XCode missing inline test results Kendall Helmstetter Gelner 2009-11-19T16:49:11Z 2009-11-19T16:49:11Z <p>Press "Cmd =" to travel between build results, you should see a warning.</p> <p>Also, that specific warning seems like it's from the static analyzer - you turn that on by going to project preferences and checkmarking "run static analyzer" or by using the "Build and Analyze" option.</p> http://stackoverflow.com/questions/1762371/how-to-swing-the-stack-object/1764701#1764701 0 Answer by Kendall Helmstetter Gelner for how to Swing the stack object ? Kendall Helmstetter Gelner 2009-11-19T16:40:39Z 2009-11-19T16:40:39Z <p>You might try asking over at:</p> <p><a href="http://iphonegamedev.stackexchange.com/" rel="nofollow">http://iphonegamedev.stackexchange.com/</a></p> http://stackoverflow.com/questions/1754267/books-to-learn-objective-c-for-an-experienced-programmer/1759031#1759031 1 Answer by Kendall Helmstetter Gelner for Books to learn objective-C for an experienced programmer. Kendall Helmstetter Gelner 2009-11-18T20:57:40Z 2009-11-18T20:57:40Z <p>I found this an excellent PDF when I was transitioning from other languages to Objective-C, as it compares a number of features from C++ and Java to Objective-C in a systematic manner:</p> <p><a href="http://ktd.club.fr/programmation/fichiers/cpp-objc-en.pdf" rel="nofollow">http://ktd.club.fr/programmation/fichiers/cpp-objc-en.pdf</a></p> http://stackoverflow.com/questions/1757376/how-can-i-edit-a-mutable-property-in-objective-c/1759015#1759015 1 Answer by Kendall Helmstetter Gelner for How can I edit a mutable property in Objective C? Kendall Helmstetter Gelner 2009-11-18T20:53:41Z 2009-11-18T20:53:41Z <p>Why are you not just calling <code>[carNames removeObjectAtIndex:indexPath.row]</code>?</p> <p>That should work just fine, since it is a mutable array.</p> http://stackoverflow.com/questions/1758160/iphone-pass-information-from-web-page-to-app-thats-downloaded-from-app-store/1758753#1758753 1 Answer by Kendall Helmstetter Gelner for iPhone: Pass information from web page to app that's downloaded from App Store Kendall Helmstetter Gelner 2009-11-18T20:15:42Z 2009-11-18T20:15:42Z <p>If you could read the unique iPhone device ID from javascript on your web page, you could look for that again when the application connected...</p> <p>But I cannot find any means of reading this from Javascript in Mobile Safari, I thought I'd post in case there is a way now to give you another option to consider.</p> http://stackoverflow.com/questions/1756457/how-to-strengthen-java-me-eco-system/1758061#1758061 0 Answer by Kendall Helmstetter Gelner for How to strengthen Java ME eco-system Kendall Helmstetter Gelner 2009-11-18T18:26:26Z 2009-11-18T18:26:26Z <p>Since Android development is all in Java, And Android is now pushing into multiple platforms - I would suggest the need for JavaME has sailed, at least for small consumer devices. </p> <p>Small devices are now powerful enough not to need the constraints that JavaME has, designed around a lot more limited system.</p> <p>There will still probably be some niche support for JavaME going forward, but I don't think you are going to see any development outside the makers of the hardware it is running on.</p> http://stackoverflow.com/questions/1757658/nsmutablearray-writetofileatomically-always-returns-no-on-device-but-works-fine/1758045#1758045 0 Answer by Kendall Helmstetter Gelner for NSMutableArray writeToFile:atomically always returns NO on device but works fine on simulator Kendall Helmstetter Gelner 2009-11-18T18:22:33Z 2009-11-18T18:22:33Z <p>I created this question exactly so you could understand how to get a writable path:</p> <p><a href="http://stackoverflow.com/questions/1567134/how-can-i-get-a-writable-path-on-the-iphone">http://stackoverflow.com/questions/1567134/how-can-i-get-a-writable-path-on-the-iphone</a></p> <p>Copy your document to a writable path and change it there.</p> http://stackoverflow.com/questions/1751132/json-framework-w-o-hidden-apis/1752066#1752066 0 Answer by Kendall Helmstetter Gelner for JSON framework w/o hidden APIs? Kendall Helmstetter Gelner 2009-11-17T21:45:52Z 2009-11-17T21:45:52Z <p>Look for projects to start adding descriptive text verifying they use no private API's nor do they plan to.</p> <p>It is an interesting issue though, as Three20 is not the first library this has happened to. Nothing beats a quick review of the code on your own.</p> http://stackoverflow.com/questions/1746795/how-to-access-a-local-host-url-in-objective-c-for-iphone-os/1750352#1750352 0 Answer by Kendall Helmstetter Gelner for How to access a local host url in Objective-C for iPhone OS Kendall Helmstetter Gelner 2009-11-17T17:13:09Z 2009-11-17T17:13:09Z <p>You cannot access another applications data directory from your own.</p> <p>What you can do, is pass some data via a custom URL handler to another application. This requires both applications to understand each other.</p> http://stackoverflow.com/questions/1748971/in-what-circumstances-will-a-notification-not-post/1750318#1750318 0 Answer by Kendall Helmstetter Gelner for in what circumstances will a notification NOT post? Kendall Helmstetter Gelner 2009-11-17T17:07:49Z 2009-11-17T17:07:49Z <p>Have you tried passing nil instead of self for the object: argument when you send? I thought nil meant you would get every notification with that name but it may not be the case.</p> <p>Also, try subscribing to the notification just before you send it and see if that gets called.</p> http://stackoverflow.com/questions/1745767/alternative-paradigm-for-mac-os-x-development/1745842#1745842 4 Answer by Kendall Helmstetter Gelner for Alternative paradigm for Mac OS X development Kendall Helmstetter Gelner 2009-11-17T00:32:48Z 2009-11-17T00:32:48Z <p>You can already assign clicks to methods in Objective-C - you define a method with a return type of IBAction and you can wire that to a number of possible events in a button, or many other controls for that matter.</p> <p>Learn to use the tools before you decide to wander off to other languages, because there is a lot of depth here from decades of evolution.</p> http://stackoverflow.com/questions/1741995/how-to-transfer-data-from-mysql-server-to-iphone/1745798#1745798 0 Answer by Kendall Helmstetter Gelner for How to transfer data from MYsql server to iphone Kendall Helmstetter Gelner 2009-11-17T00:23:38Z 2009-11-17T00:23:38Z <p>You could either pull, or have the app register for push notifications when active and be told when updates are available (you can opt to receive notifications only when the app is open, notification data packets are not large enough to hold the data updates themselves).</p> http://stackoverflow.com/questions/1740264/image-not-displaying-from-local-html-on-iphone-webview/1745783#1745783 0 Answer by Kendall Helmstetter Gelner for Image not displaying from local html on iPhone webview Kendall Helmstetter Gelner 2009-11-17T00:20:51Z 2009-11-17T00:20:51Z <p>Instead of baseURL:nil, try baseURL:[[NSBundle mainBundle] bundlePath]</p> http://stackoverflow.com/questions/1742336/discovering-the-users-first-and-last-names/1745775#1745775 0 Answer by Kendall Helmstetter Gelner for Discovering the user's first and last names? Kendall Helmstetter Gelner 2009-11-17T00:19:09Z 2009-11-17T00:19:09Z <p>As noted in the other thread, there is NSFullUserName() - this call does come up in the iPhone documentation so it should work on the device. Simply parse out the first and last name from that.</p> http://stackoverflow.com/questions/1745293/multiple-tabs-controlling-a-single-uiwebview/1745761#1745761 1 Answer by Kendall Helmstetter Gelner for Multiple tabs controlling a single UIWebview Kendall Helmstetter Gelner 2009-11-17T00:16:22Z 2009-11-17T00:16:22Z <p>A tab bar is really the wrong model for what you are trying to do. If you want to switch content what you really want is a ToolBar, because that is meant to alter an-place view in various ways - TabBar is meant for switching between multiple unrelated views, and as such you are fighting against it when you try to use the same view across multiple tabs.</p> <p>Now if you really have totally unrelated content, why not consider just using different UIWebViews, one per tab. They are not so heavy that loading having multiple instances really hurts anything, and tabs do not load content until pressed so they will not all load at once. To conserve memory you could even toss away view controllers when tabs are switched. But having each view manage its own web view makes more sense and means you can keep the content cached much easier.</p> http://stackoverflow.com/questions/1742960/when-is-the-right-time-to-change-the-datasource-for-a-uitableviewcontroller/1745238#1745238 1 Answer by Kendall Helmstetter Gelner for When is the right time to change the datasource for a UITableViewController Kendall Helmstetter Gelner 2009-11-16T22:22:29Z 2009-11-16T22:22:29Z <p>viewDidAppear is all about the view controller, not the table. The table reloading will never call that method.</p> <p>What you want to do, is better handled either via a delegate approach or using notifications. Set up the static data set in viewDidLoad, but then right away start the background dynamic data fetch. When that fetch is complete, have the code downloading the new data call you either as a delegate, or issue a notification your the view controller with the table listens to, and reset the table view data - then you can simply call reloadData, and the cellForRow:AtIndexPath: method will be called again for the rows on the screen (reload data will also revert back to the top of the table).</p> http://stackoverflow.com/questions/1807869/compile-error-on-xcode/1808613#1808613 Comment by Kendall Helmstetter Gelner on compile error on Xcode Kendall Helmstetter Gelner 2009-11-29T04:56:02Z 2009-11-29T04:56:02Z Why is it loading the MediaPlayer framework from /Users/ragopor/Desktop/iRadio? That's your problem. http://stackoverflow.com/questions/1732991/nsscanner-memory-leak/1733176#1733176 Comment by Kendall Helmstetter Gelner on NSScanner memory leak Kendall Helmstetter Gelner 2009-11-24T19:51:45Z 2009-11-24T19:51:45Z It's not exactly wrong, it's just a wash compared to the extra resources you use to create the copy... however that said I do usually use copy on the other side, at least for NSString properties. There I like to have a clearer picture when the string I am using was really allocated. Because you mostly return autoreleased objects I like to leave it up to the caller to decide if it's worth the expense of making a copy, the caller does not know what you are returning is mutable so there's no danger there. If the value were meant to be accessed by different threads later on, then I would copy. http://stackoverflow.com/questions/1092144/what-mobile-platform-should-i-start-learning/1094558#1094558 Comment by Kendall Helmstetter Gelner on what mobile platform should I start learning? Kendall Helmstetter Gelner 2009-11-24T19:47:50Z 2009-11-24T19:47:50Z I would not count it out yet! These things take a little time. WHat you are not seeing now is someone buying the technology to get back into the game... http://stackoverflow.com/questions/1237830/how-do-i-set-these-break-points-in-gdbinit/1239744#1239744 Comment by Kendall Helmstetter Gelner on How do I set these break points in ~/.gdbinit? Kendall Helmstetter Gelner 2009-11-23T07:32:14Z 2009-11-23T07:32:14Z You create a new file called .gdbinit - put it in your home directory. Now every time gdb starts it will execute the commands in this file. http://stackoverflow.com/questions/1757376/how-can-i-edit-a-mutable-property-in-objective-c/1759015#1759015 Comment by Kendall Helmstetter Gelner on How can I edit a mutable property in Objective C? Kendall Helmstetter Gelner 2009-11-22T04:56:10Z 2009-11-22T04:56:10Z Glad you got it solved, I thought the fact you were saying it was sorted was a little suspicious... I should have stated that explicitly since in other things I've done I sort first and then make a mutable copy. http://stackoverflow.com/questions/1775479/run-loops-and-threads-in-apples-cocoaxmlparser-example/1776148#1776148 Comment by Kendall Helmstetter Gelner on Run-loops and threads in Apple's CocoaXMLParser example Kendall Helmstetter Gelner 2009-11-22T04:54:35Z 2009-11-22T04:54:35Z Exactly, in fact I have run into this exact problem before in real life -you open a valid connection, and then connectionDidFinishLoading is never called... nor are any of the other methods like didReceiveData. In that case the background thread you were trying to load on terminated before the URL connection could even do anything. http://stackoverflow.com/questions/1685797/string-tokenizer-in-objective-c-for-iphone-application-development/1685897#1685897 Comment by Kendall Helmstetter Gelner on String tokenizer in Objective-C for iPhone application development Kendall Helmstetter Gelner 2009-11-21T17:12:59Z 2009-11-21T17:12:59Z The question is based on Objective-C, a C answer (particularly an overly complex C answer that is not even a good way to do this in C) is simply not needed nor desirable. The mistake is ever posting this. http://stackoverflow.com/questions/1724234/prefered-javascript-editor-for-mac/1724781#1724781 Comment by Kendall Helmstetter Gelner on Prefered Javascript editor for Mac? Kendall Helmstetter Gelner 2009-11-21T00:05:50Z 2009-11-21T00:05:50Z Both of these sound really useful, thanks for including Emacs answers. http://stackoverflow.com/questions/1757376/how-can-i-edit-a-mutable-property-in-objective-c/1759015#1759015 Comment by Kendall Helmstetter Gelner on How can I edit a mutable property in Objective C? Kendall Helmstetter Gelner 2009-11-21T00:03:43Z 2009-11-21T00:03:43Z Are you really, really sure sortedCarNameList is mutable? Because the fact is something is setting that array to a non-mutable value. There's no other explanation because mutable arrays do work. I would suggest setting a watch on the class variable to break whenever the value is changed (right click on class variable in Debugger window and select &quot;watch variable&quot;) http://stackoverflow.com/questions/1764877/iphone-app-running-while-screen-locked/1766656#1766656 Comment by Kendall Helmstetter Gelner on iPhone app running while screen locked Kendall Helmstetter Gelner 2009-11-20T23:59:38Z 2009-11-20T23:59:38Z I don't think there's any way to disable the BG light. The thinking was that the battery drain might be lessened if the screen held minimal data so no other work was being done by the system to keep images on screen. http://stackoverflow.com/questions/1763210/can-i-hide-or-make-my-iphone-application-unsearchable-on-the-app-store/1763256#1763256 Comment by Kendall Helmstetter Gelner on Can I hide or make my iphone Application unsearchable on the App Store? Kendall Helmstetter Gelner 2009-11-19T21:22:16Z 2009-11-19T21:22:16Z Also note you must have a company of greater than 500 people to purchase an enterprise license. http://stackoverflow.com/questions/1764354/how-can-i-use-goto-in-a-switch-statement-in-objective-c/1764429#1764429 Comment by Kendall Helmstetter Gelner on How can I use goto in a switch statement in Objective-C? Kendall Helmstetter Gelner 2009-11-19T16:45:31Z 2009-11-19T16:45:31Z Instead of breaking it out into separate methods that you wire individually, the best approach could well be leave the method you have (so only one point to wire to) but as others are suggesting, take all the common code and put that in a method you call from the switch statement. http://stackoverflow.com/questions/1761288/will-this-hack-make-apple-furious-will-the-reject-my-app/1763455#1763455 Comment by Kendall Helmstetter Gelner on Will this hack make apple furious? (Will the reject my app ?) Kendall Helmstetter Gelner 2009-11-19T15:51:03Z 2009-11-19T15:51:03Z Because the code uses &quot;valueForKey&quot;, the scanners might not find this (because they would be looking for symbols, not plain strings). But, I would not want to bet on that... http://stackoverflow.com/questions/1762836/iphone-create-folder-inside-documents-folder/1762862#1762862 Comment by Kendall Helmstetter Gelner on iPhone create folder inside documents folder Kendall Helmstetter Gelner 2009-11-19T15:48:36Z 2009-11-19T15:48:36Z I fixed the code to use the more correct &quot;stringByAppendingPathComponent&quot;, which does the right thing regardless of either input string having a &quot;/&quot; or not. http://stackoverflow.com/questions/1757376/how-can-i-edit-a-mutable-property-in-objective-c/1759015#1759015 Comment by Kendall Helmstetter Gelner on How can I edit a mutable property in Objective C? Kendall Helmstetter Gelner 2009-11-19T02:21:06Z 2009-11-19T02:21:06Z Aha, then you must have created the carNames array using a non-mutable construction method - can we see that code? Or, perhaps you are changing the array somewhere else via copy...