Search results

  1. Captain Code

    Debugger() was called!

    All those users are part of the UNIX heritage of OS X. They are all normal. Some processes run as their own user for security purposes since you can restrict user accounts to be able to access only a small area on the hard drive. Many things need to run as root to give them higher access...
  2. Captain Code

    Official Mac OS X 10.6 Snow Leopard Thread & FAQ

    This might be the way to enable the 64 bit kernel To try to boot x86_64 kernel on Macintosh, edit this file: /Library/Preferences/SystemConfiguration/com.apple.Boot.plist find there: <key>Kernel Flags</key> <string></string> and change it to <key>Kernel Flags</key> <string>arch=x86_64</string>...
  3. Captain Code

    Official Mac OS X 10.6 Snow Leopard Thread & FAQ

    That seems odd that a 64 bit Core 2 Duo laptop won't run the 64 bit kernel. I wonder what the reason for that is.
  4. Captain Code

    The reason for the 10.5.7 non-release

    The new icon happened a while ago but not all computers it seems. My 10.5.7 still has the incandescent bulb icon http://discussions.apple.com/thread.jspa?messageID=9483222
  5. Captain Code

    The reason for the 10.5.7 non-release

    The first preview of 10.6 was last summer at WWDC. They gave out pre-release copies of an early build and have been seeding it to ADC members for a while. I'm guessing it'll be complete by WWDC this year which is June 8-12.
  6. Captain Code

    Here is the 3.0 announcement

    Well 3.0 will have tethering as long as the cell carriers allow it.
  7. Captain Code

    Omni Group's free software

    I think OmniObjectMeter used to be hundreds of dollars.
  8. Captain Code

    Installing Wordpress on Leopard Server

    Try changing "localhost" to "127.0.0.1" instead. I've noticed that using just localhost tries to use the socket file which is in a different place than what PHP expects so changing it to an actual IP address forces it to connect over TCP instead.
  9. Captain Code

    not open SQLite database in iPhone device

    Yes it does but this will include the SDK for the current software that's running on the iPhone which as of now is 2.1
  10. Captain Code

    not open SQLite database in iPhone device

    It looks like the NDA will be lifted in a matter of days or less. I will unlock your topic when I have read the new NDA agreement.
  11. Captain Code

    not open SQLite database in iPhone device

    That class is covered under the iPhone SDK NDA so we can not talk about this until the NDA is lifted.
  12. Captain Code

    HP Touchsmart setting the bar for Apple?

    Some laptops have the rotating screen that can close and turn the computer into a tablet basically. Those are pretty cool but really only useful if you are an artist or want to write with a stylus. I can't really see myself using it but I wouldn't say no to one if it ever came out from Apple.
  13. Captain Code

    How to set text on image

    That class is covered under the iPhone SDK NDA so we can not talk about this until the NDA is lifted.
  14. Captain Code

    warning for ABMultiValueCreateMutable

    Additionally, kABHomeLabel is a type CFStringRef(pointer) and that function takes an integer.
  15. Captain Code

    warning for ABMultiValueCreateMutable

    kABHomeLabel is not a supported value to pass to ABMultiValueCreateMutable. See the documentation within XCode and specifically you want to pass in one of these values: Record Property Types These constants identify record property types. #define kABMultiValueMask (1 << 8) enum {...
  16. Captain Code

    How to get object type

    Those are actually typedefs to C data types so they aren't objects Defined in NSObjCRuntime.h: #if __LP64__ || (TARGET_OS_EMBEDDED && !TARGET_OS_IPHONE) || TARGET_OS_WIN32 || NS_BUILD_32_LIKE_64 typedef long NSInteger; typedef unsigned long NSUInteger; #else typedef int NSInteger; typedef...
  17. Captain Code

    How to get object type

    You can ask an object if it's a kind of class: id obj = [myDictionary objectForKey:@"somekey"]; if([obj isKindOfClass:[NSString Class]]) { //do something } else { //do some other thing }
  18. Captain Code

    How to relase NSDictionary

    We can't talk specifically about anything to do with the iPhone SDK due to the NDA. However your question is generic Objective-C and the reason for your error is that you have created an auto released NSDictionary. Class methods denoted by a + as opposed to a -, are as far as I know always...
  19. Captain Code

    Limewire and iTunes stopped working together!

    We don't support music piracy
  20. Captain Code

    NSTextFiled selected on start

    This will work [myTextField becomeFirstResponder];
Back
Top