IPhone UISwitch not appearing correctly in table cells

I have a table cell with a UISwitch attached to it.
When you click the switch it works (but not without a bit of code to make it switch when the word 'on' and 'off' are actually clicked) but when the table cell itself is clicked the switch distorts like shown here:
http://img35.imageshack.us/img35/6510/picture1df.png
what is the correct way to make a table cell with a UISwitch?

The code you posted looks like it should work on 3.0 just fine.
I've tried a custom table cell and it did the same thing
Assuming your custom subclass was built and used correctly, the above tells me something is definitely wrong in the cell's environment.
Perhaps it's something to do with the selecting of the row method?
Well that's certainly the first place to look. The delegate method you posted looks kinky. I would comment out that method, then go back to the solutions that didn't work in the past and see if your tableView:didSelectRowAtIndexPath: hasn't been the problem all along.
In any case I would get rid of the deselect message in tableView:didSelectRowAtIndexPath:. What are you trying to accomplish there? If you simply want to disable all selections, you can just code tableView.allowsSelection=NO during setup. If you want to know the user's selection but don't want the cell to actually become selected, try something like this in the delegate:
- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
return nil;
If you want the cell to actually become selected, but don't want its appearance to change, try cell.selectionStyle=UITableViewCellSelectionStyleNone in tableView:cellForRowAtIndexPath:.
If tableView:didSelectRowAtIndexPath: turns out not to have been the problem, we'll need to look at the rest of your table view code. I've found the kind of problem you described is easily isolated once you have faith in some assumptions. In this case you just need to believe that both the subclass solution and the code in UICatalog will allow a UISwitch to display and operate perfectly. Once you believe that, you'll pay more attention to the rest of you code.
One excellent way to gain faith in the basic structure is to start a fresh testbed and, for example, use code similar to UICatalog to bring up a table view with a UISwitch in one or more cells. Once you see how easy it is to make that work, you can start backing in some of your more creative init, delegate and/or data source methods until you break the testbed.
- Ray

Similar Messages

  • '...' not appearing in obscured table cell when using custom renderer.

    Hello all -
    I am using a custom JPanel as a cell renderer in a JTable to display two icons per cell. Unfortunately, I am running into a problem that occurs when resizing a column such that the width of the column is less than the size of the cell content. Normally, when resizing a cell in this manner, it will start to cut off the text within the cell and add '...' to signify that some material is obscured. However, using my cell renderer, the text simply cuts off with no indication whatsoever there is more content that is being hidden. I have tried looking through the JComponent code to find a function to overload but I haven't had much luck. Does anyone have any suggestions?
    For a simple example, compile and run the following code and try resizing the two columns. You should be able to notice the difference.
    Thanks,
    - Alex
    import java.awt.*;
    import java.awt.image.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.table.*;
    public class TwoIcons extends JFrame {
         public static void main(String[] args){
              createIcons();
              SwingUtilities.invokeLater
                   new Runnable()
                        public void run() {
                             new TwoIcons();
         public TwoIcons(){
              super("Test");
              DefaultTableModel tm = new DefaultTableModel(
                   new Object[][]{
                        {new IconPair("cross", "cross"), "just a string"},
                        {new IconPair("circle", "cross"),"just another string"},
                        {new IconPair("String", "circle"),"yet another string"}
                   }, new String[]{"Two Icons","String"}){
                   public Class getColumnClass(int columnIndex){
                        if(columnIndex==0){
                             return IconPair.class;
                        else
                             return super.getColumnClass(columnIndex);
              JTable table = new JTable(tm);
              final Color bg = table.getBackground();
              table.setDefaultRenderer(IconPair.class, new TableCellRenderer(){
                        RendererPanel renderer = new RendererPanel(bg);
                        public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
                             renderer.setIcons((IconPair)value);
                             return  renderer;
              JScrollPane scp = new JScrollPane(table);
              add(scp);
              setSize(400,100);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              pack();
              setVisible(true);
         class RendererPanel extends JPanel{
              JLabel icon1, icon2;
              RendererPanel(Color bg){
                   setLayout(new BoxLayout(this,BoxLayout.LINE_AXIS) );
                   icon1=new JLabel();
                   icon2=new JLabel();
                   add(icon1);
                   add(icon2);
                   setBackground(bg);
              public void setIcons(IconPair value) {
                   icon1.setIcon(value.i1);
                   icon1.setToolTipText("Icon 1");
                   icon2.setIcon(value.i2);
                   icon2.setToolTipText("Icon 2");
                   //uncomment next 2 lines if you want text as well
                   icon1.setText(value.s1);
                   icon2.setText(value.s2);
         class IconPair {
              public Icon i1,i2;
              public String s1,s2;
              IconPair(String s1, String s2){
                   this.i1=(Icon)icons.get(s1);
                   this.i2=(Icon)icons.get(s2);
                   this.s1=s1;
                   this.s2=s2;
         static Map icons = new HashMap();
         public static  void createIcons(){
              Image img = new BufferedImage(10,10, BufferedImage.TYPE_INT_ARGB);
              Graphics2D g2=(Graphics2D)(img.getGraphics());
              g2.setColor(Color.BLUE);
              g2.drawLine(0,0,10,10);
              g2.drawLine(0,10,10,0);
              icons.put("cross",new ImageIcon(img));
              img = new BufferedImage(10,10, BufferedImage.TYPE_INT_ARGB);
              g2=(Graphics2D)(img.getGraphics());
              g2.setColor(Color.ORANGE);
              g2.drawOval(1,1,8,8);
              icons.put("circle",new ImageIcon(img));
    }

    Things aren't resizable in your layout for the custom renderer. Here's your code working as you want (I think)
    import java.awt.*;
    import java.awt.image.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.table.*;
    public class TwoIcons extends JFrame {
         public static void main(String[] args){
              createIcons();
              SwingUtilities.invokeLater
                   new Runnable()
                        public void run() {
                             new TwoIcons();
         public TwoIcons(){
              super("Test");
              DefaultTableModel tm = new DefaultTableModel(
                   new Object[][]{
                        {new IconPair("cross", "cross"), "just a string"},
                        {new IconPair("circle", "cross"),"just another string"},
                        {new IconPair("String", "circle"),"yet another string"}
                   }, new String[]{"Two Icons","String"}){
                   public Class getColumnClass(int columnIndex){
                        if(columnIndex==0){
                             return IconPair.class;
                        else
                             return super.getColumnClass(columnIndex);
              JTable table = new JTable(tm);
              final Color bg = table.getBackground();
              table.setDefaultRenderer(IconPair.class, new TableCellRenderer(){
                        RendererPanel renderer = new RendererPanel(bg);
                        public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
                             renderer.setIcons((IconPair)value);
                             return  renderer;
              JScrollPane scp = new JScrollPane(table);
              getContentPane().add(scp);
              setSize(400,100);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              pack();
              setVisible(true);
         class RendererPanel extends JPanel{
              JLabel icon1, icon2;
              RendererPanel(Color bg){
                   setLayout(new BoxLayout(this,BoxLayout.LINE_AXIS) );
                   icon1=new JLabel();
                   icon2=new JLabel();
                   add(icon1);
                   add(icon2);
                   icon1.setMinimumSize(new Dimension(0, 0));
                   icon2.setMinimumSize(new Dimension(0, 0));
                   icon1.setMaximumSize(new Dimension(Integer.MAX_VALUE, Integer.MAX_VALUE));
                   icon2.setMaximumSize(new Dimension(Integer.MAX_VALUE, Integer.MAX_VALUE));
                   setBackground(bg);
              public void setIcons(IconPair value) {
                   icon1.setIcon(value.i1);
                   icon1.setToolTipText("Icon 1");
                   icon2.setIcon(value.i2);
                   icon2.setToolTipText("Icon 2");
                   //uncomment next 2 lines if you want text as well
                   icon1.setText(value.s1);
                   icon2.setText(value.s2);
         class IconPair {
              public Icon i1,i2;
              public String s1,s2;
              IconPair(String s1, String s2){
                   this.i1=(Icon)icons.get(s1);
                   this.i2=(Icon)icons.get(s2);
                   this.s1=s1;
                   this.s2=s2;
         static Map icons = new HashMap();
         public static  void createIcons(){
              Image img = new BufferedImage(10,10, BufferedImage.TYPE_INT_ARGB);
              Graphics2D g2=(Graphics2D)(img.getGraphics());
              g2.setColor(Color.BLUE);
              g2.drawLine(0,0,10,10);
              g2.drawLine(0,10,10,0);
              icons.put("cross",new ImageIcon(img));
              img = new BufferedImage(10,10, BufferedImage.TYPE_INT_ARGB);
              g2=(Graphics2D)(img.getGraphics());
              g2.setColor(Color.ORANGE);
              g2.drawOval(1,1,8,8);
              icons.put("circle",new ImageIcon(img));
    }Note that the ... is a function of the JLabel when it is too small to render its text.

  • Image not appearing correctly in table

    Hi Friends,
    I am doing the Store Front tutorial and as a part of I am displaying the product details as the table. The details are showing fine in the table. However in the image it is showing text. I have added a image component in the text and also set the binding to #{bindings.image.inputValue}.
    Now when I select the first row in the table, all the images for the other rows are same. It shows the same image as that of the first row in all rows. When I go to the second row it shows the image related to second row in all rows. Can someone please tell me what I am doing wrong.
    Thanks

    Hi,
    the binding should be
    #{row.bindings.image.inputValue}.
    Frank
    Edited by: Frank Nimphius on May 22, 2013 12:57 PM

  • IPhone Calendar not syncing correctly with iCal since Lion-install

    Since installing Lion, the calendar on my iPhone is not syncing correctly:
    Events created on my iPhone don't show on my Mac
    Events edited on my iPhone don't change on my Mac
    Events that I created in iCal on my Mac, for test-purposes, and then deleted immediately, show up on the iPhone when syncing.
    Syncing through iTunes (not MobileMe).
    Using WeekCal on my iPone, but it seems that the same is the case with the "original" calendar-app.
    No similar experience prior to Lion-install.
    iPhone is iOS 4.3.4 -up to date
    Any ideas? Does anybody know how to reset the sync, for instance?

    Hi, my name is Lucas, i'm an Apple Certified Technitian.
    Last couple of weeks i've installed OSX Lion in a few Macs.
    But one of them drove me crazy!
    I have a Late 2007 White Macbook and i installed OSX Lion last week. I also have an iPhone 4 (Factory Unlocked) that i also updated to IOS 4.3.5 ... no problems syncing between them
    Then i did the same with a 13'' Unibody MacBook Pro and an iPhone 4 (not unlocked)... no problems neither
    Yesterday i installed Lion on a Mid2010 15" MacBook Pro and updated another iPhone 4 (Factory Unlocked) to IOS 4.3.5 and when i tried to sync the iphone with iTunes 10.4 nothing happened.
    I mean, nothing.. the iTunes started syncing and when it gets to sync the calendars it stayied there forever.
    I left it for hours and nothing.
    As i said i'm an ACT so i tried everything.
    1- Remove Calendars from iPhone and syncing again
    1- Repair Permittions
    2- Reinstall iTunes
    3- Reset iTunes and iCal Preferences and Caches
    4- Backup iCal - erase ical content and generate a new iCal database
    5- Reset Syncing Prefs and logs
    6- Use DiskWarrior from an external OSX
    7- Reset PRAM
    Nothing worked.
    I thought it could be some conflict with Microsoft Outlook and/or Exchange server since this Mac is the only one of the three macs i installed that uses Outlook Sync and Exchange server and it's the only one that gave me trouble.
    But disableing it didn't worked neither.
    THE SOLUTION
    I Already solved this thing out. But i still don't understand the logic of all this... anyway, what y did is this:
    1- turn off microsoft outlook sync with iCal (from outlook preferences)
    2- Backed up iCals (Just in case)
    3- Create a new Calendar Category (by default you have Work and Home... i created one called Test)
    4- i Created a new task at that calendar
    5- In iTunes uncheck the "Sync iCal" box and sync the iPhone
    6- Check th "Sync iCal" box, then check the "sync the selected calendars" box
    7- Check the "Test" calendar and sync the iPhone.
    This worked so i started creating task in this Test Calendar both in iphone and mac, just to test it, Worked fine.
    Then i selected all the other calendars (Home - Work - etc) and i turned on the outlook sync
    Then i synced the iPhone and Voilà everything is working again.
    Now i can create task in outlook calendar and when y sync the iphone it appears on it.
    I don't know what the problem is... but this looks like the solution
    HOpe it works for you!

  • Iphone does not appear in itunes. _ALL_ recommended steps were taken to no avail

    I'm using windows 7 pro 64-bit, itunes 10.3.1.  I have an iphone 3gs running ios v. 4.3.3.  All software and drivers are up-to-date on my computer.
    When I open itunes and plug in my iphone, itunes hangs for roughly two solid minutes.  After which, my iphone does not appear in itunes.  The same thing happens if I reverse the order and plug in my iphone before opening itunes.
    I have read and followed all and I mean all the instructions in multiple articles on the apple support site to try and resolve the issue, and nothing has fixed the problem.  My impression is that this is a bug in the latest itunes release since the problem started after updating to the latest version of itunes and did not occur previously.  Nothing else changed with either my computer or my iphone since then.  In all other ways, my computer, all USB devices connected to it, and all other software installed on it function perfectly.
    Here are the things I have done that DO NOT RESOLVE MY PROBLEM:
    - restart apple mobile device service and verify it is configured correctly
    - restart ipod service and verify it is configured correctly
    - restart my computer
    - reset my iphone
    - verify that my USB drivers are up-to-date and all USB ports are functioning correctly
    - verify that my iphone DOES correctly appear in windows explorer and the device manager
    - verify that my security software (norton 360) is updated to the latest version
    For the record I am not running any third-party phone software.
    Here is the only thing I have found that works, however, it works ONLY for the first time I open itunes afterwards.  After syncing ONE TIME, the next time I open itunes, the problem comes back exactly like before.
    - completely uninstall, and then reinstall all apple software in precise accordance with instructions given on the support page http://support.apple.com/kb/HT1923
    I honestly don't expect anyone to have a solution to this issue, but I will be thrilled if there is one.  I am posting primarily to see if anyone else is experiencing the same problem, and hopefully to gain the attention of a developer who can hopefully institute a fix.

    Sounds like a ruined iTunes install iTunes require a number of services running if an overzealosch firewall or rights settings or "optimisme" program stopped any of those what you exp happens

  • The SIM card inserted in this iPhone does not appear to be supported. 3-UK

    Hi,
    I've recently changed my iPhone from the UK Carrier o2 to the UK Carrier Three. When I inserted the 3 sim, iPhone immediately switches to a screen which indicates to connect iPhone to iTunes or allows you to slide for emergency. When I connected to iTunes the following message appears:
    "The SIM card inserted into this iPhone does not appear to be supported"
    "Only compatible SIM cards from a supported Carrier may be used to activate iPhone. Please insert the SIM that came with iPhone or visit the Carriers store to receive a replacement SIM."
    When I went to the Three store they weren't able to tell me what was the problem and suggested I go to apple (unfortunatley I'm not able to go to an apple store any time soon). I bought the phone from apple not o2 so I don't think it's locked, and I would imagine it would say if that was the case?
    Thanks in advance for your time!

    Your 3G iPhone is locked to O2 and Peter's link to O2 unlock iPhone is the correct way to unlock.
    I've had mine iPhone unlocked by O2 just by completing the unlocking form simple as that, 3 days later O2 sends a text message saying unlock is sucessful. Here you have to remove O2 simcard replace it with your new simcard (3) and connect to itunes and sync.
    After completion 3 mobile shows on the iTunes summary, disconnect from iTunes and restart your iPhone. That's it.

  • THE SIM CARD INSERTED IN THIS IPHONE DOES NOT APPEAR TO BE SUPPORTED.....

    Hello. I bought on Dec. 17th 2007 at Orange shop in Beausoleil (south France) an iPhone with the option of unlocking the Sim (100 Euro plus). I followed all instructions. Everything was perfect, on Dec. 24th I was able to unlock the iPhone and used with Orange sim, MonacoTelecom sim and Vodafone sim. BUT the iPhone had a problem: when in sleep mode it did't received calls. So Afer 24 hours I stopped to use, UNSAFE. After Christmas holidays I called Apple assistance, they send me UPS and I returned iPhone to Apple (Jan. 4th 2008). I received a NEW iPhone on Jan. 8th 2008, VERY RUSH. Perfect service, I thought (...making terrible error...). The iPhone was LOCKED and I wasn't able to use. Now starts all the problems and for this reason I'm writing.
    I called Apple and Orange many times. Orange didn't received the documents from Apple for the changing of IMEI and Serial, for them I had the first iPhone. After many cals finally I asked Apple to send something official for the changing.
    ....Days goes on and on.......
    Every day two times I called Orange, but evert time I received different versions of my situation. Everyday I tried to restore the iPhone but still simlocked.
    On Jan.15th after a meeting with a lawyer I decided to make pression to Apple: infact I returned them an unlocked iPhone and I received back a locked one.
    I finally was able to speak with a "supervisor" (Mr. F...) and he tried to solve the problem.
    On Jan. 16th I spoke with another "supervisor" (Mr. J...) and he told me to make another time the restore, because they changed the firmware.
    From now I tried to make the restore many times with Orange sim. Everything seems to go well but when I put another sim on iTunes there is a white page with:
    "THE SIM CARD INSERTED IN THIS IPHONE DOES NOT APPEAR TO BE SUPPORTED. Only compatible SIM cards from a supported Carrier may be used to activate iPhone. Please etc etc....".
    So the iphone is locked!!! Maybe is country locked, I don't know.
    Incredible, unbelievable.
    From Apple they told me to wait someting from US, but until now ..... nothing, I received no news from Apple.
    The bad situation is that after more than 30 days after the buy I am not able to use the hardware I bought!
    I hope that someone from Apple can read this post (sorry if is so long, but with this details I think that in Apple can understand the problem).
    I send in warranty an hardware with certain features that I payed to Apple and I received back it with different features.
    That's not serious.
    After many days, next week I think to go by legal means if Apple France is'nt able to solve the issue.
    Many thanks if someone from Apple read my post.
    Many thanks if someone help me.

    But who has to make another unlock? Orange told me that for them is ok and the phone is unlocked. I read on other pages that Apple has a world-database with Imei numbers. So seems Apple can also do the unlock, even for the fact that they returned me a locked phone, different from the one I sent them. The warranty is with Apple, I forgot to warite in my first post that first of all on Janauary I went to Orange shop where I bought the iPhone but they told me for every problem is Apple that has to solve.

  • HT1937 i unlocked my iphone 4 factory and i upgrade to 6.1 when i connect it to itunes it apears  The SIM card inserted in this iPhone does not appear to be supported This iPhone is not currently setup to work with carrier you're attempting to use. Please

    i unlocked my iphone 4 factory and i upgrade to 6.1 when i connect it to itunes it apears
    The SIM card inserted in this iPhone does not appear to be supported
    This iPhone is not currently setup to work with carrier you're attempting to use. Please insert another SIM card from a supported carrier or request that this iPhone be unlocked.

    It sounds like you or someone else hacked the phone to unlock it. Updating it locked it to the original carrier.
    How did you unlock it? The ONLY legitimate way is to ask the carrier it is locked to to unlock it. Any other way requires hacking or jailbreaking the phone.

  • Good night recently my iphone 4s was exchanged for a new one because was defective and was in warranty. the problem is that now I try to use the same apple id on itunes and applications while had bought the old iphone does not appear and I think should ap

    good night recently my iphone 4s was exchanged for a new one because was defective and was in warranty. the problem is that now I try to use the same apple id on itunes and applications while had bought the old iphone does not appear and I think should appear. Can someone help?

    ?

  • IPhone  will not appear in iTunes on Windows 7 (64) no matter what I do.

    Ok, so I recently updated my PC to Windows 7 (64), and set everything up again using Windows Easy Transfer. Originally iTunes installed using the version which the Apple Downloader picked up and was working reasonably okay. However, whilst I was playing around with the PC, I noticed that iTunes was installed in "Program Files (x86)". So i figured it must've installed the 32 bit version of iTunes on the PC instead, so off I went and uninstalled and installed the 64 bit version from here: http://support.apple.com/kb/DL1047
    During that installation, I noticed it too installs to the x86 directory so I ignored it. However, this is where the fun started. At first I noticed that as soon as I plugged in my iPhone 4, iTunes would freeze up, effectively going into a "Not Responding" mode. This would rectify however immediately after unplugging the iPhone.
    So after a few attempts and getting the same result, I started searching the web for a solution. After which I tried the following: Deleting the USB drivers and attempted re-install. Drivers were deleted successfully, however once clicking on "Check for hardware changes" the Apple Device never again showed up. I then opened iTunes again, plugged in the iPhone again, and now noticed that iTunes no longer froze, however the iPhone did not appear. From this point, here is a list of all the things I have done, from both folowing the support (http://www.apple.com/support/iphone/assistant/itunes/) and other people's advice:
    - Tried a different USB port.
    - Uninstalled all Apple drivers.
    - Uninstalled all Apple Software, including Apple Mobile Device, Apple
    Automatic Update & Quicktime.
    - Searched the registry and removed all references for iTunes.
    - Deleted all iTunes folders from the computer.
    - Deleted AppData temporary folder from my profile.
    - Turned off and restarted the iPhone.
    - Checked for software conflicts.
    - Restarted the computer after each change.
    - Reinstalled Apple Automatic Update from a fresh download.
    - Reinstalled iTunes using the Automatic Update application.
    From here I started iTunes again and plugged in my iPhone. This time however I got a message saying something along the lines of "cannot connect iPhone, required software is not installed, this is a 32bit version of iTunes, please uninstall and reinstall the 64bit version of iTunes (this is a little confusing as I learnt earlier that you cannot install the 32 bit version on a 64 bit machine as you get an error during installation).
    So, again. I uninstalled all of iTunes and associated software, downloaded the 64bit version of iTunes again - thinking the original version of the EXE was corrupted somehow during the download. After reinstalling, I plugged in my iPhone. It showed that the device drivers were installing, however at some point they failed. I then went back into device manager and uninstalled the USB driver and clicked on "check for hardware changes". This time the iPhone was found and appeared to install the drivers successfully when I plugged the iPhone back in... but low and behold, the iPhone was still not showing up in iTunes.
    I have spent a good few hours on this, and am getting pretty frustrated. Does anyone on here have an ACTUAL fix for this problem?
    The only thing I haven't done is do a factory reset of my iPhone, which I'nm hesitant to do, as I haven't had a chance to "export my purchases" off the handset to the PC as yet.
    Cheers,
    Steve
    PS: Just out of interest, the iPhone still connects perfectly fine on my work (XP) machine.

    I'm an applications developer and also run a part-time videography business. As such, I require more than 3.12GB of RAM. That is the physical limitation of a 32bit system. Pointless to stay on 32bit if you plan on having more than that much RAM.
    I'm also not about to pay someone to fix my PC when I can do it myself. I was originally hoping for someone who had experienced the problem before to point me in the right direction so I didn't have to spend so much time trying to figure out what the issue was for myself.
    Basically, in the end the problem was caused because right at the point in time when I chose to uninstall, and reinstall; Apple released a new version of iTunes. This version in turn had a requirement of iOS 4.2 to sync with the iPhone. This is a pretty embarrassing for Apple that they would release software reliant on other software before said software was released.
    Had I realised I was downloading a newer version at the initial point of installation, this wouldn't have been an issue. I could've easily have rolled back iTunes to the previous version and gotten on with my life.
    Another issue is that iTunes is not actually a 64 bit application. It masquerades as one to allow installation on the 64 bit platform.

  • I updated my Iphone 3gs to 6.1.3 after that I am having this message "Your iPhone could not be activated because the activation server is temporarily unavailable." "The SIM card inserted in this iPhone does not appear to be supported"  plz help me! what s

    I updated my Iphone 3gs to 6.1.3, after that m having this message:
    "Your iPhone could not be activated because the activation server is temporarily unavailable."
    "The SIM card inserted in this iPhone does not appear to be supported"
    plz help me! what should i do now?

    You had a jailbreak and unlock.
    When you updated you cooked it.
    Your phone is done.
    Time for a new one.

  • When registering my iphone on itunes the message - the sim card insertedin this iphone does not appear to be supported - can anyone shed some light on this and tell me a way around this problem?

    when registering my iphone on itunes the message - the sim card insertedin this iphone does not appear to be supported - can anyone shed some light on this and tell me a way around this problem? the phone itself is an english phone and tried to register with a spanish sim and that message appeard, so i tried with my iphone sim which is english and the same message appeared!
    thanks

    Is the English sim from the original carrier as that is usually the message you get with a carrier locked phone.

  • Website suddenly not appearing correctly in Firefox under Windows 7

    I've had a website running for a couple of years now with no problems, but one of my clients sent me an email saying it's not appearing correctly on her system, Windows 7 runnning Firefox v. 15. I am on a MAC and have looked at the site on 4 different browsers and it looks fine, I also installed Firefox (v. 16) on a PC running Windows 7 and it looks fine there. Near as I recall I haven't made any changes to the site's structure, so I'm stumped. The website is http://www.horizonwings.org. Can anyone help? I've attached a couple of screen captures showing what she sees. Thank you.

    I see the same problem as your client in Firefox 16 on Windows 7. To fix the problem, add clear: left to the style for leftColMain
    #leftColMain {
        clear: left;     float: left;
        padding: 30px 0 0;
        position: relative;
        width: 210px;

  • How to fix The SIM card inserted in this iPhone does not appear to be supported. The SIM card that you currently have installed in this iPhone is from a carrier that is not supported under the activation policy that is currently assigned by the activation

    The SIM card inserted in this iPhone does not appear to be supported.
    The SIM card that you currently have installed in this iPhone is from a carrier that is not supported under the activation policy that is currently assigned by the activation server. This is not a hardware issue with the iPhone. Please insert another SIM card from a supported carrier or request that this iPhone be unlocked by your carrier. Please contact Apple for more information.

    Or if you've recently got the phone unlocked then you'll need to connect it to  itunes and then do a fresh restore to unlock it ,although for most users simply connecting to itunes for few seconds did the trick.

  • Iphone does not appear in device list in itunes?

    Cant sync my iphone

    I have two iPhones (iOS 4.3.5 (8L1) & 4.3.4 (8K2)) that do not appear in iTunes. For both phones, I have followed all steps at
    http://www.apple.com/support/iphone/assistant/itunes/
    except re-installing iTunes which seems like a ridiculous thing to do. I have updated my iMac to Lion (Mac OS X 10.7) and have the latest iTunes 10.4 (80). Also, my two iPhones do not appear in iPhoto 9.1.5 (615) either.
    Since I rebooted my iMac I'd assume that is similar to your advice to stop and restart services.
    Any further suggestions?

Maybe you are looking for

  • IPhone 3GS with 4.2.1 will not connect to iTunes 10.6.3.25

    When I plug my 3GS into my computer with iTunes pulled up nothing happens. It wont even charge. I have used the same cord and computer to connect to my father's iPhone 4 and his old 3GS. I have information on this phone that i really dont want to los

  • External Hard Drives Suddenly being removed:

    I have two different external hard drives that I use for storing video (1 Seagate and 1 Western Digital). Over the last few days I have had them powered up one at a time. After about 10 minutes, I receive an alert that says that a "device wasn't prop

  • I need help trying to install Primavera P6 Application on linux

    Is there someone who can explain to me how to install Primavera P6 on Red Hat Linux ? I have installed oracle 10g & Primavera database on my linux system. I download P6 from this site. I got .exe file in that. How should i install the application in

  • "Include transparency" on export to QT?

    Okay, what does this mean, anyway? When exporting a Keynote show to QuickTime, one of the options is to "include transparency". What does that mean? What gets identified as "transparent"? --Dave Althoff, Jr.

  • Ideapad A1000-F not charging!!! AC/DC adaptor queston

    I need help. My tablet will not even turn on. I tried all the ideas here. I was told to send it back so I got it together only to realize I do not know which is the original cord.My kids were trying to help while I was visiting a family member in the