chown33
Apr 11, 12:09 AM
Without looking at the code, the error message should tell you what's wrong. I've hilited the significant part in bold:
2011-04-10 22:49:45.657 ForoTest[219:207] -[UIViewController showNextView]: unrecognized selector sent to instance 0x4b38630
2011-04-10 22:49:45.735 ForoTest[219:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIViewController showNextView]: unrecognized selector sent to instance 0x4b38630'
It's sending a showNextView message to a UIViewController instance.
Your first post said the method was in your app delegate, not a UIViewController, so check your source first. When I look at the source, I see showNextView in ForoTestViewController, not the app delegate like you said.
I also advise you to check your classes in the nib, to make sure a ForoTestViewController is being instantiated.
It's unclear how you made the non-working Xcode 4 project. If you started with the known-working project, then you probably just broke a connection or misconnected something. If you recreated it entirely from scratch, then there's no easy way of knowing what mistakes you might have made. I'm pretty sure Xcode 4 can open Xcode 3 projects, so I don't know why you'd want to start over.
2011-04-10 22:49:45.657 ForoTest[219:207] -[UIViewController showNextView]: unrecognized selector sent to instance 0x4b38630
2011-04-10 22:49:45.735 ForoTest[219:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIViewController showNextView]: unrecognized selector sent to instance 0x4b38630'
It's sending a showNextView message to a UIViewController instance.
Your first post said the method was in your app delegate, not a UIViewController, so check your source first. When I look at the source, I see showNextView in ForoTestViewController, not the app delegate like you said.
I also advise you to check your classes in the nib, to make sure a ForoTestViewController is being instantiated.
It's unclear how you made the non-working Xcode 4 project. If you started with the known-working project, then you probably just broke a connection or misconnected something. If you recreated it entirely from scratch, then there's no easy way of knowing what mistakes you might have made. I'm pretty sure Xcode 4 can open Xcode 3 projects, so I don't know why you'd want to start over.
iPhone4you
Apr 10, 07:58 PM
I need a case for my iPhone 4. I don't want it to be too bulky, and I don't need too much coverage.
Thanks!
Thanks!
Oirectine
Jun 16, 02:07 AM
I would kinda like to find a website where flame wars were cherished, trolls were honored, and bitter insults were extolled.
Of course, I appreciate and enjoy the close community that has formed here too much to want MacRumors to be that site, but I would like my occassional craving for flaming to be satisfied somewhere.
http://www.adequacy.org/ !
And, as much as I hate to say it, http://www.kuro5hin.org/ is full of jerkish trolls. *sigh*
PS: What do you have against Best Buy?
Of course, I appreciate and enjoy the close community that has formed here too much to want MacRumors to be that site, but I would like my occassional craving for flaming to be satisfied somewhere.
http://www.adequacy.org/ !
And, as much as I hate to say it, http://www.kuro5hin.org/ is full of jerkish trolls. *sigh*
PS: What do you have against Best Buy?
TheMacMaster
Apr 29, 09:43 PM
ok so not sure if this is the same problem as you but i got my mac to boot up then i went into activity monitor and it said every thing was idle. then i went into disc utility and did a permission check and a verify disc and it said this
Repairing permissions for �Macintosh HD�
Permissions repair complete
Verifying volume �Macintosh HD�
Performing live verification.
Checking Journaled HFS Plus volume.
Checking extents overflow file.
Checking catalog file.
Keys out of order
The volume Macintosh HD was found corrupt and needs to be repaired.
Error: This disk needs to be repaired. Start up your computer with another disk (such as your Mac OS X installation disc), and then use Disk Utility to repair this disk.
and i was like dang i dont have a disc so anyone know what i can do to fix this?
Repairing permissions for �Macintosh HD�
Permissions repair complete
Verifying volume �Macintosh HD�
Performing live verification.
Checking Journaled HFS Plus volume.
Checking extents overflow file.
Checking catalog file.
Keys out of order
The volume Macintosh HD was found corrupt and needs to be repaired.
Error: This disk needs to be repaired. Start up your computer with another disk (such as your Mac OS X installation disc), and then use Disk Utility to repair this disk.
and i was like dang i dont have a disc so anyone know what i can do to fix this?
more...
skoker
Dec 3, 11:11 AM
No One?
No offence, but this is MACRumors :D
No offence, but this is MACRumors :D
robbieduncan
Dec 15, 04:23 PM
Are we talking Aluminium or Titanium here?
more...
28Fiend
Apr 21, 09:35 AM
http://www.ifixdirect.com/
iFixitdirect looks like they have a quality swap kit, includes everything the white iPhone has. They even mention oem quality parts and no problems with the prox sensor.
iFixitdirect looks like they have a quality swap kit, includes everything the white iPhone has. They even mention oem quality parts and no problems with the prox sensor.
ninebythree
Dec 23, 05:10 PM
I'm having this problem with my relatively new (3 months) iBook. After it's been woken from sleep mode, the keyboard won't work for a minute or so. It'll work if the iBook's been open during sleep mode and I wake it up using the keyboard, but if I wake it from being closed or I wake it with the mouse, the keyboard doesn't function for a short period of time. Help?
more...
mddharma
Sep 19, 07:26 PM
Also, does anyone have an Apple Studio monitor hooked up to titanium PB? I have one of those and I am planning to get a new 12" PB.
Lord Blackadder
Dec 6, 11:57 AM
so you brought the 500mzh motherboard and just stuck it in, and it worked fine cool
;)
Assuming this works, you still won't be able to run Rise of Nations since the 500MHz iMac has a 16MB Rage Ultra - you need a 32MB video card.
;)
Assuming this works, you still won't be able to run Rise of Nations since the 500MHz iMac has a 16MB Rage Ultra - you need a 32MB video card.
more...
ulbador
Feb 24, 10:17 AM
So at one point in my code, I use mysqli_ping() to check if a connection to mysql is still alive. In C, doing this will actually reconnect the connection if it dies, but with PHP it just returns true or false, which is fine.
My problem is thus. On occasion, I get this error:
Message: mysqli_ping() [<a href='function.mysqli-ping'>function.mysqli-ping</a>]: Couldn't fetch mysqli
In an effort to prevent this, I have tried EVERYTHING I could think of to prevent the ping from being executed, to absolutely no avail:
if (is_object($conn) && mysqil_ping($conn))
if ($conn != null && mysqli_ping($conn))
if (!empty($conn) && mysqli_ping($conn))
if (isset($conn) && mysqli_ping($conn))
if (!is_null($conn) && mysqli_ping($conn))
try {
mysqli_ping($conn);
} catch (Exception $e){
}
I am totally at the end of my rope on this. Anyone have any suggestions?
Thanks.
My problem is thus. On occasion, I get this error:
Message: mysqli_ping() [<a href='function.mysqli-ping'>function.mysqli-ping</a>]: Couldn't fetch mysqli
In an effort to prevent this, I have tried EVERYTHING I could think of to prevent the ping from being executed, to absolutely no avail:
if (is_object($conn) && mysqil_ping($conn))
if ($conn != null && mysqli_ping($conn))
if (!empty($conn) && mysqli_ping($conn))
if (isset($conn) && mysqli_ping($conn))
if (!is_null($conn) && mysqli_ping($conn))
try {
mysqli_ping($conn);
} catch (Exception $e){
}
I am totally at the end of my rope on this. Anyone have any suggestions?
Thanks.
Cyclotrode
Oct 21, 11:02 PM
I will more than likely be there around 3:30 or 4.
It's almost here!!! :apple:
It's almost here!!! :apple:
more...
tutubibi
Nov 28, 07:32 PM
I also recommend LaCie as well. I have D2 8x (Pioneer inside) and so far it is flawless.
harveypooka
Mar 17, 06:11 PM
Throw some games in the hat please guys!
I'm looking for a game to play under windows on my machine (see sig)
What are you all playing at the moment?
STALKER is coming out next week in the UK. I'm hoping it's going to be a Fallout-esque FPS. It's set in an area called the Zone, near Chernobyl. It's a bit of a mish mash of Stalker by Andrei Tarkovsky and the Chernobyl incident. CVG has plenty of interviews and reviews with the developers.
http://www.computerandvideogames.com/article.php?id=160157
I'm looking for a game to play under windows on my machine (see sig)
What are you all playing at the moment?
STALKER is coming out next week in the UK. I'm hoping it's going to be a Fallout-esque FPS. It's set in an area called the Zone, near Chernobyl. It's a bit of a mish mash of Stalker by Andrei Tarkovsky and the Chernobyl incident. CVG has plenty of interviews and reviews with the developers.
http://www.computerandvideogames.com/article.php?id=160157
more...
macdaddy121
Oct 2, 10:51 AM
How much cash would you accept for it in an outright sale?
BrettJDeriso
Mar 11, 12:25 PM
I walked in to the Spectrum Center BestBuy (accross the street from RTC) at noon. They have an area set aside for a line, but there was no one in it at that time. I also asked the clerk if they would be checking demand in the line and advising customers if there was a shortage, and he said "no".
So if you're not willing to take chances guessing whether they will have adequate stock (and I'm not), you're better off taking your chances with the Apple stores.
At least Tysons is indoors :P
So if you're not willing to take chances guessing whether they will have adequate stock (and I'm not), you're better off taking your chances with the Apple stores.
At least Tysons is indoors :P
more...
edesignuk
Mar 24, 05:48 AM
Unfortunately, not exactly an exciting update.
No, but bug fixes and stuff are never a bad thing :)
No, but bug fixes and stuff are never a bad thing :)
Hackint0sh814
Apr 28, 09:17 AM
Ah beat me to it. My buddy just sent them to me this morning. Glad you got what you were looking for.
Lord Appleseed
May 6, 04:23 PM
How about 1080p movies in full screen mode? Does it look bad? Do you guys prefer watching it through a window at 1080p?
No, it looks very awesome. Since there are no movies at 1440p there is no comparison though.
Laughing at our mistakes can lengthen our own life. Laughing at someone else's can shorten it - Cullen Hightower
And your point is? Also: Never herd of this guy.
No, it looks very awesome. Since there are no movies at 1440p there is no comparison though.
Laughing at our mistakes can lengthen our own life. Laughing at someone else's can shorten it - Cullen Hightower
And your point is? Also: Never herd of this guy.
Orme
May 4, 10:00 AM
I would wait until there is a tear down by ifixit to confirm or refute that. In the past you had to buy brackets and other cables i believe to do this yourself. Its a pain and you may want to wait for TB external SSD drives which would be faster and less of a pain than opening up your iMac
External 1TB SSD would be heaven, considering it won't be inconveniently stuck in your iMac for the price you pay and you can use it on whatever.. but I heard that won't happen any time soon?
In regards to the OP.. from what I've heard from an Apple professional over the phone, is that I can update my 1TB to 2TB or an SSD in a few years if I want to via a technician.. so yes, these ones are possibly upgradeable if the previous weren't?
I just couldn't believe that this guy from Apple was trying his best to convince me NOT TO spend an extra �450 on the SSD option, very friendly and helpful; was talking me out of it for a good 20 minutes. Which says something. Seems pretty genuine to me.
External 1TB SSD would be heaven, considering it won't be inconveniently stuck in your iMac for the price you pay and you can use it on whatever.. but I heard that won't happen any time soon?
In regards to the OP.. from what I've heard from an Apple professional over the phone, is that I can update my 1TB to 2TB or an SSD in a few years if I want to via a technician.. so yes, these ones are possibly upgradeable if the previous weren't?
I just couldn't believe that this guy from Apple was trying his best to convince me NOT TO spend an extra �450 on the SSD option, very friendly and helpful; was talking me out of it for a good 20 minutes. Which says something. Seems pretty genuine to me.
MacBytes
Dec 22, 09:01 AM
Category: 3rd Party Software
Link: BeLight Software to ship Business Card Composer 3.0 in January (http://www.macbytes.com/link.php?sid=20041222100134)
Posted on MacBytes.com (http://www.macbytes.com)
Approved by Mudbug
Link: BeLight Software to ship Business Card Composer 3.0 in January (http://www.macbytes.com/link.php?sid=20041222100134)
Posted on MacBytes.com (http://www.macbytes.com)
Approved by Mudbug
zimv20
Jan 10, 11:37 AM
Yes, amongst many others.
http://www.mozilla.org/support/firefox/keyboard
sweet. thanks!
http://www.mozilla.org/support/firefox/keyboard
sweet. thanks!
jph.daulte
Feb 15, 09:58 AM
I have upgrade my iBook OS, from OS922 to 10.3.8.
(iBook G3 800 MHz, 384 Mb SDRAM, HD 40Gb, ADSL256)
Before I erased all data on my hard disk to zero. Clean installation also.
After that, as a result, I have a corrupted display and a freezed iBook!
(see attached...)
BUT, if I boot the iBook without extensions, (safe boot),
it's ok....
I have no ideas how to solve this bug. I tried to re install twice, no more success... I run Disk Utility, TechToolsPro, DiskWarrior, nothing special...
I think to understand a System log could help.
What does <The "HasShadow" window property is obsolete> mean?
How, and where learn to use those system log?
I usually manage well my troobleshootings, but I'm not at all experienced in Unix, BSD, and System log.
Here is a part of last System log
Feb 15 08:08:04 localhost SystemStarter: Bienvenue sur Macintosh.
Feb 15 08:08:04 localhost SystemStarter: D?marrage extensions d?sactiv?es
Feb 15 08:08:05 localhost ConsoleMessage: Starting Apple Multicast DNS Responder
Feb 15 08:08:05 localhost ConsoleMessage: Starting SecurityServer
Feb 15 08:08:05 localhost ConsoleMessage: Starting timed execution services
Feb 15 08:08:05 localhost ConsoleMessage: Starting kernel event agent
Feb 15 08:08:05 localhost SystemStarter: D?marrage du r?pondeur DNS multi-diffusion Apple
Feb 15 08:08:05 localhost ConsoleMessage: Initializing network
Feb 15 08:08:05 localhost mDNSResponder[154]: mDNSResponder-58.8 (Apr 24 2004 20:38:40) starting
Feb 15 08:08:07 localhost SystemStarter: Starting SecurityServer
Feb 15 08:08:07 localhost SystemStarter: D?marrage des services ? ex?cution diff?r?e
Feb 15 08:08:07 localhost SystemStarter: D?marrage de l?agent d??v?nement du kernel
Feb 15 08:08:07 localhost SystemStarter: Initialisation du r?seau
Feb 15 08:08:11 localhost kernel: ATY,Bee_A: vram [9c000000:02000000]
Feb 15 08:08:11 localhost kernel: ATY,Bee_B: vram [98000000:02000000]
Feb 15 08:08:11 localhost SystemStarter: The "HasShadow" window property is obsolete. Use CGSSetWindowShadowAndRimParameters(cid, wid, 0.0,0.0, 0,0, CGSNoShadowStyle) to turn off the window shadow instead. Set a break-point on CGSLogMessage to find out where this property is set.
Is ATY the culprit? But how to debug this?
Regards
jph.daulte
(iBook G3 800 MHz, 384 Mb SDRAM, HD 40Gb, ADSL256)
Before I erased all data on my hard disk to zero. Clean installation also.
After that, as a result, I have a corrupted display and a freezed iBook!
(see attached...)
BUT, if I boot the iBook without extensions, (safe boot),
it's ok....
I have no ideas how to solve this bug. I tried to re install twice, no more success... I run Disk Utility, TechToolsPro, DiskWarrior, nothing special...
I think to understand a System log could help.
What does <The "HasShadow" window property is obsolete> mean?
How, and where learn to use those system log?
I usually manage well my troobleshootings, but I'm not at all experienced in Unix, BSD, and System log.
Here is a part of last System log
Feb 15 08:08:04 localhost SystemStarter: Bienvenue sur Macintosh.
Feb 15 08:08:04 localhost SystemStarter: D?marrage extensions d?sactiv?es
Feb 15 08:08:05 localhost ConsoleMessage: Starting Apple Multicast DNS Responder
Feb 15 08:08:05 localhost ConsoleMessage: Starting SecurityServer
Feb 15 08:08:05 localhost ConsoleMessage: Starting timed execution services
Feb 15 08:08:05 localhost ConsoleMessage: Starting kernel event agent
Feb 15 08:08:05 localhost SystemStarter: D?marrage du r?pondeur DNS multi-diffusion Apple
Feb 15 08:08:05 localhost ConsoleMessage: Initializing network
Feb 15 08:08:05 localhost mDNSResponder[154]: mDNSResponder-58.8 (Apr 24 2004 20:38:40) starting
Feb 15 08:08:07 localhost SystemStarter: Starting SecurityServer
Feb 15 08:08:07 localhost SystemStarter: D?marrage des services ? ex?cution diff?r?e
Feb 15 08:08:07 localhost SystemStarter: D?marrage de l?agent d??v?nement du kernel
Feb 15 08:08:07 localhost SystemStarter: Initialisation du r?seau
Feb 15 08:08:11 localhost kernel: ATY,Bee_A: vram [9c000000:02000000]
Feb 15 08:08:11 localhost kernel: ATY,Bee_B: vram [98000000:02000000]
Feb 15 08:08:11 localhost SystemStarter: The "HasShadow" window property is obsolete. Use CGSSetWindowShadowAndRimParameters(cid, wid, 0.0,0.0, 0,0, CGSNoShadowStyle) to turn off the window shadow instead. Set a break-point on CGSLogMessage to find out where this property is set.
Is ATY the culprit? But how to debug this?
Regards
jph.daulte
TheWheelMan
Apr 4, 09:17 PM
I think I made an error yesterday by trying to charge the iPad with a 3rd party connector. It charged fine, and this morning I awoke to a 100% charged battery as usual.
Out of curiosity, why did you use a third party charger? I've done it a few times with other devices, but it's always been with quality, branded chargers (like charging my Kindle with my BlackBerry's charger), but I wouldn't dare do that with my iPad unless I knew it was top quality since so many of those third party chargers, like third party batteries, can damage your equipment.
By the way, I think using a third party charger may have voided your warranty anyway. At least on some devices I'm pretty sure it does.
Out of curiosity, why did you use a third party charger? I've done it a few times with other devices, but it's always been with quality, branded chargers (like charging my Kindle with my BlackBerry's charger), but I wouldn't dare do that with my iPad unless I knew it was top quality since so many of those third party chargers, like third party batteries, can damage your equipment.
By the way, I think using a third party charger may have voided your warranty anyway. At least on some devices I'm pretty sure it does.
No comments:
Post a Comment