Why does UIImageView behave differently in the Simulator?

Having added a subview to a background image, I then randomly change the frame of the subview. This works corectly in the Simulator i.e. the subview moves relative to the background. But on the iPhone both background image and subview move together.
in viewDidLoad:
[background addSubview: newView];
and in a timer callback:
newView.frame = CGRectMake(rand()%6,rand()%6, newView.frame.size.width, newView.frame.size.height);
Any suggestions?

Done!  Thanks!
https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.0.9
https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.1.9

Similar Messages

  • Why does terminal behave differently when logged in as different users?

    when I'm logged into my mba as my regular normal user, bash behaves normally;  but when I create a new user or use any user other than my default the behavior is different.  (might be bash or sh)
    Specifically, the tab autocomplete function works fine when I'm logged in as my regular user (tab-complete;  tab twice for all available selections/options).
    But on a newly-created user (also an admin) there is no tab complete, no 'tab twice, other options' etc. 
    Has anyone else seen this?
    I searched in this forum and found some instructions for creating an .inputrc file but I don't appear to have one on my default user so not sure why I would need this on the new user ?!?!?
    p.s. here are the instructions I found previously via a post on this forum:
    http://www.ernieflores.net/osx-page-4/how-to-enable-tab-completion-in-mac-os-x-t erminal/

    Done!  Thanks!
    https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.0.9
    https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.1.9

  • Create DNG Profile - Why does it look different in the DNG Editor vs LR/ACR?

    Hi everyone, I am sorry if this has been covered before -- perhaps you could give me a link to the relevant info.
    I have a client who shoots with a Leica DMR.  The reds are way to saturated and magenta.  We created a new camera profile in the DNG editor using a color-checker chart, shot at D6500 and Tungsten.  Looks great, and Lightroom recognizes it.  The issue:  when we look at a photograph in the DNG editor with this profile, it looks much better.  When we look at the same photograph in LR/ACR with the profile selected, the reds are still too saturated and magenta (though way better than without our profile).  Why would a photo look different in the two applications, with the same profile?
    As shown in DNG Editor:
    As shown in LR:
    Thank you for any light you can shed on this.
    Laura Shoe

    Here is an additional comparison further highlighting the magenta issue (amongst others).  Shot with Leica R9 w/DMR(firmware1.3) using Leica Vario-Elmarit-R 35-70mm at ISO 100, f/4.8, 1/60.  Manual WB=4912K, no Exp Comp.
    Here is screen shot of same DNG image. Un-altered in either app., no presets, no sharpening, or noise reduction.  CaptureOne (v4.8.3) on the left, and LR2 (v2.6)
    Here is what the above screen shot looks like thru CS3:
    you must click on image to see CS3 rendering - browser is not accurate
    Anyone no what's going on?
    PS the images were shot just shy of perfect focus to test sharpening in both apps, same levels applied to both images (C1 on left, LR on right).  Here are the results:

  • Why does terminal behave differently with respect to "Resume" feature?

    Terminal behaves a little funky when it comes to the new "Resume" feature in Lion.  Here's a few interesting notes:
    When restarting, Terminal prompts the user to close itself.  If you don't click close in time, the reboot process is halted.  This ***** because resume gets confused.  When you close Terminal and reboot, Resume only opens applications that were closed AFTER terminal was manually closed.  This is only a small subset of applications that were originally opened from the first reboot attempt.
    If you do manage to close terminal in time, it only comes up on Desktop 1 after resume.  This is fine if that's what you want, but I have terminal configured on "All Desktops".  To workaround the issue, I have to set terminal to "This Desktop", then "All Desktops" EVERY TIME I REBOOT.
    No other apple programs seem to do this.
    Where do I log a bug/feature request for this?
    Cheers!

    Done!  Thanks!
    https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.0.9
    https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.1.9

  • Why does DIO6534 behaves differently from its lesser relatives?

    I am developing under LabWindows/CVI some code for the DIO 653X family. It's almost two years since I started working with'em, so it's disappointing the problem I'm talking about.
    This is the guilty code:
    DIG_Grp_Config(DIO_BOARD, 2, 2, 2, 0);
    DIG_Block_PG_Config(DIO_BOARD, 2, 1, 0, rtimebase, rreqint, 0);
    DIG_Block_In(DIO_BOARD, 2, in_conf_buff, 1281);
    do {
    status = DIG_Block_Check(DIO_BOARD, 2, &rem);
    } while (rem);
    It is used to read in pattern generation 1281 samples, 16 bits each, on group 2
    The code runs OK on DIO 32-HS and on DAQCard 6533, but it faults on DIO 6534.
    Provided that rtimebase e rreqint are correctly defined and that in_conf_buff is wi
    de enough to contain all the acquisition, the problem is: come to the do-while loop that worries about controlling that the acquisition is running OK by the DIG_Block_Check instruction, the program remains in the loop, with a single sample to be read (rem = 1), only with DIO 6534.
    I made some trials to get out of the mess, so that I found that the error happens when I use an odd number of samples, not when I use an even number. But the REQ pulses number are needed to drive a read-out chip, so I can't simply reduce or increase by 1 the samples number, as this would leave the chip in an umpredictable state.
    Who can help me?

    Hi medihelp,
    Because the 6534 always performs DMA transfers in 32-bit even for 16-bit input groups, there will be "stranded" data if the number of data transferred is not a multiple of 4 bytes. This different behavior (compared to the 6533) is due to the addition of onboard memory to support high speed transfers. At the end of the DMA transfers, the stranded data will be retrieved manually, and status should be updated to indicate that the tranfer is truly finished. There is a bug in the NIDAQ driver that fails to update the status flag, causing the return value of DIG_Block_Check to get stuck at 1, even though all data has been acquired. The fix for this problem will be made available to all users very soon. In the meantime, I would recommend that you either make the
    sample count a multiple of 4 bytes, or change the condition of the while loop to break when DIG_Block_Check returns 1 instead of 0.

  • Why Reports format behaves different in Excel and browser(if desformat=html or pdf)?

    1-Why Reports format behaves different in Excel and browser(if desformat=html or pdf)?
    2-I made three queries Q1,Q2 & Q3 and linked them with proper field links but suppose Q3 returns no records for some Q1&Q2 records & when the report runs for delimited options it reflects only those records as output for which all the queries return records(if Q3 returns no record then the related records from queries Q1,Q2 don't reflect) while the output in desformat=html or pdf is ok..
    can you please resolve my problems
    ( I have installed patch 5a in my report server machine)
    Thanks & Regds.
    Suneel
    null

    What do you mean by "different"? (In our
    experience, Oracle html output has too many
    columns, which are not visible in the
    browser but are obvious in Excel.)
    We build our own html programmatically, so
    that Excel matches the browser more closely.
    -- Allan Plumb

  • Why does Adobe sendnow work and the newest and greatest Adobe Send does not work?

    Why does Adobe sendnow work and the newest and greatest Adobe Send does not work? I wasted about 8 hours on trying to get Adobe Send to upload 269 files that amounted to 469MB. When it did not work I made a zip file and after a lot of wasted run time that did not work. The first situation gives little indication of when a file is loaded compared to Adobe SendNow. In both cases with Send it failed with a message like only the first 50 can be loaded. When I went and looked none of them had been loaded. With the zip file (I wanted to hide the individual files so they would not be counted) it appeared to work but very slowly and finally said it was done and I went and looked and it had done anything for oever 2 hours except a false "I'm runninng" indication.
    Thus, I took a chance with Adobe SendNow and it works great. It never gave me a limit on the amount of files nor on the size of the complete job. It shows me one file at a time when it has finished with the file uploading it. SendNow has never given me any problems.
    Why woiuld you want to change the program from SendNow to Send without the newest program being the best, fastest, user friendly program of the two? It just doesn't make sense to me. I suggest that Adobe keep SendNow working until Send is fixed. I would also suggest that SendNow and how it looks be kept, called Send, then modify Send one thing at a time until you get it to the point you need it to be for Acrobat. I have heard nothing good and now I have experienced it that Send is a piece of junk. I wasted most of my work day on giving Adobe the benefit of the doubt to find out I made a very bad decision to trust Adobe to make good decisions on the transfer of a function to another place .... both Adobe's responsibility.without making it painless for your customers that totally rely on you. Don't throw away customer confidence as it is very hard to get it back.

    Funny how you answer to "troll". (What's your handle on AT&T forums?)
    Yep! Verizon living up to it's contractual obligations by not releasing updates. Caveat emptor!
    I think there are some reasonable expectations here to keep customer's happy. When one carrier offers upgrades there is an expectation the same will happen across all the carriers. We have seen that except Big Red.
    Verizon could have said the update is in MS court months ago and stilled the voice of the disgruntled, or at least redirected it, but instead chose to be silent. Not for market share but for partial blame I think.
    We will have to agree to disagree since you only see Terms & Conditions and I, see customer satisfaction.

  • Why does my iPad keep losing the wifi every few minutes?

    Why does my iPad keep losing the wireless connection every few minutes?

    Could be
    1 the routers firmware require an Update
    2 the iPad is defect

  • Why does my ipad drop off the Internet frequently?

    Why does my ipad drop ff the Internet frequently? It will be going fine then just won't connect

    Could be interference from something near you like a cordless phone, etc.

  • Why does I can't install the FORM6I DEMO program

    Hi :
    Why does I can't install the FORM6I DEMO program?
    Environment:WINDOWS98 ORACLE 817 single machine version FROM6i
    The FORM6i installs in the :D:\ FORM60
    The ORACLE817 installs in the D:\ORACLE 817
    While installing the DEMO, always hint is not an ORACLEHOME catalogue, two catalogues can't all install.
    Please the help!

    Hi Mountain Matt,
    Please make sure that you're logged in as an administrator, and that any antivirus software on your system is disabled. Then, trying downloading Acrobat from Download Acrobat products | Standard, Pro | XI, X, and run the installer.
    Please let us know how it goes. If you're still having trouble and need additional help, it will be very helpful to know what version of Windows you're using.
    Best,
    Sara

  • Why does my image not reach the edges of the page when printed, but appears fine as pdf?

    Why does my image not reach the edges of the page when printed, but appears fine as pdf?

    Check a printable area of your printer.
    Make a (grey) rectangle that is larger than the paper size. Print it,
    you'll get a message that some cropping will occur, that's okay. Then take a
    ruler and measure the dimensions of the rectangle printed on the paper or
    the white borders around the printed rectangle.

  • TS1398 Why does my iPad2 not display the WiFi icon?

    Why does my iPad2 not display the WiFi icon? I have implemented ALL of the troubleshooting tips, but my WiFi icon is still missing, and it will NOT recognize the internet connection that I know to work on my computer and iPhone.

    Try the following:
    1. Reset the AirPlay devices
    2. Reboot the router
    3. Reboot the iPad
    Note: The AirPlay icon is now in the Control Center

  • Why does iPhoto not give me the option of ordering a medium size soft cover book?

    why does iPhoto not give me the option of ordering a medium size soft cover book?

    This is the iPod touch forum. There are two iPhoto forums, one for iOS iPhoto and the for OSX iPhoto. Try posting in the appropriate one

  • Why does Adobe refuse to provide the latest version of Camera Raw (like my Canon 6d) for CS5?

    Why does Adobe refuse to provide the latest version of Camera Raw (like my Canon 6d) that could be supported in Photoshop CS5 or earlier?  Its like Adobe saying you want a Camera Raw for you Camera then buy CS6 which is insulting to your customers.

    Kenny_777 wrote:
    Why does Adobe refuse to provide the latest version of Camera Raw (like my Canon 6d) that could be supported in Photoshop CS5 or earlier?
    Adobe's policy to to provide free updates (not upgrades) for currently shipping software, which means the current Photoshop CS6 and Camera Raw 7.x. Development on Photoshop CS5.x and Camera Raw 6.x stopped when Photoshop CS6 started shipping. While it may appear on the surface that's it's a ploy to force users to upgrade to the most recent version when getting a new camera, it's really a policy based on the technical issues of trying to provide backwards compatible software for application that are no longer being developed.
    Camera Raw is a plug-in for Photoshop and as such, it is dependent on the Photoshop SDK in which it loads...it's also dependent upon the system level APIs being used by the applications. Could Adobe keep upgrading old software? Yes, but it would be a technical nightmare.
    Your alternative is simply use the free DNG Converter if you want to use new cameras that weren't in existence when your old software was developed. Pretty simple really and it's not designed as insult to Adobe customers...it's actually an affirmative program to make sure current users are provided support.
    The problem of new camera support for old software is really a problem caused primarily by the camera companies spawning off new cameras whose file formats are undocumented and proprietary. If the camera makers adopted a standard file format that could be opened in standard applications (kinda like DNG) then tis problem would be mitigated. You really should place the lion's share of the problem at the feet of the camera companies...

  • Why does Adobe Flash crash all the time? It is reallyt annoying and I'm considering using another browser. Please tell me how to fix this.

    Why does Adobe Flash crash all the time? It is really annoying and I'm considering using another browser.
    Please tell me how to fix this.

    Try to uninstall your current Flash version and update Flash to the latest version.
    Troubleshoot Flash Player installation for Windows:
    * http://kb2.adobe.com/cps/191/tn_19166.html#main_Uninstall_the_older_Flash_Player_version
    *http://www.adobe.com/software/flash/about/
    *https://support.mozilla.com/kb/Managing+the+Flash+plugin
    *http://kb.mozillazine.org/Flash

Maybe you are looking for

  • How to find out what program is using a file I am trying to delete?

    I know I could probably just reboot and then empty my trash without getting this error- but this is a good chance to learn. So, I have a video file I converted with Handbrake. I deleted the file- but it won't let me delete it- saying it is in use (th

  • Acrobat 9 Help is broken with Chrome browser installed.

    I have Acrobat 9 Standard on Win7-64bit;  browsers are Chrome v. 18.0.1025.142 and IE 9.  Acrobat Help does not work correctly when launched in Chrome;  only shows part of the text, search doesn't work, etc. Acrobat Help works fine when launched from

  • Documents view in Mavericks not working

    I can't click on any of my documents in Mavericks. The viewing options are inactive. That is, I can see a grey-colored list of the files, but I can't select any of them. When I switch the viewing options, some of the files will be "alive" and clickab

  • JMS Adpater Error

    Hi all I configure the JMS receiver Adpater of webSphereMQ but i got the error as followed: <b>Receiver channel. Details: MQJMS2005: failed to create MQQueueManager for '172.31.235.100:QM_Test'</b> I have a doubt: The XI and MQ are in the same server

  • No Internet After I Pod Shut Down Then Up?

    One Day I Was Playing With My I Pod Touch Then It Died And Shut Down I Charged It And It Came Back On But Had No Internet.IChecked My Internet It Was Connected But Didint Have The Sign.I have an i pod 4G IOS 6.0.1.I Have No Idea Whats Causing It TO H