Search results

  1. dadidoe

    NSTextView not updating String

    Hi, I am building a XCode console like window to help users debug my BETA app.The Console is a window with a NSTextView in it.On "applicationDidFinishLaunching:", I've implemented a welcome message:[console setString:@"Welcome to the Console etc"];.When an IBAction is being executed,such as...
  2. dadidoe

    iPhone 2.2-Loading External XIB

    Hi, I've been trying to make a connection between a button in my MainMenu.xib and MyVideo.xib, but all the attempts I've made resulted to a freeze-up. I'm new to iPhone development-does someone know the code? Thanks :)
  3. dadidoe

    http:// insert fails to work, giving me a 0?

    Hi, I'm working on a browser and it needs automatic http:// substitution. However, whenever I click on go, the whole URL gets replaced with either a 0 or a 1. Not very useful. I can't find the issue here. Can someone help out?:) Here is my .h file: #import <Cocoa/Cocoa.h> @class...
  4. dadidoe

    Autoclose Window

    Hi, currently I am working on a Splash Screen. It's being displayed but not autoclosed. Instead the Mac OSX "Bottle" Sound comes every 5 seconds.(that's what I set the NSTimer for)The Window is named window2. Can someone tell me what I have done wrong? -(void)awakeFromNib//I must ensure...
  5. dadidoe

    Put App into Menu Bar

    How is it possible to put app related information into the menu bar, such as the Airport Icon for example?
  6. dadidoe

    Remove Font Trait fails to work!

    I was using the Font Manager cube in Interface Builder, in order to make a bold font I tagged it using number 2 and connected it to "add font trait". But how do I remove the bold font? RemoveFontTrait didnt work, tagging it -2 and connecting it to removeFontTrait doesn't work or tagging it as 2...
  7. dadidoe

    NSDrawer Problem

    Hi, I've got a NSDrawer, but I ran into 2 problems. The first one is that the drawers size is too small, can someone give me a snippet i can use? Secondly, how can the NSDrawer AutoOpen when the app launches? thanks
  8. dadidoe

    Loading External NIBS

    How can I open a nib included in my project? I got this, but it doesn't work. [NSBundle loadNibNamed:@"AboutPanel.nib" owner:self] Could anyone please help me?
  9. dadidoe

    Bindings don't work in NSToolbar?

    I'm trying to set a binding for enabled in the NSToolbar, but it doesn't get applied. Can anyone tell me how to make it work?
  10. dadidoe

    X-Code for iPhone Problem

    Out of some reason I receive this: I tried that, nothing works. Still that lame error. It wasn't there yesterday...If I choose "Don't Code Sign", it says that I have to:( Can anyone help?
  11. dadidoe

    EXC_Breakpoint @ MacOSX 10.4

    hi, im building on a new app which is aimed at mac osx 10.4 and 10.5 users. Running fine on 10.5, i tried using the app on 10.4, but i received this error message: (see attachment) Checking on the terminal I received this: Exception: EXC_BREAKPOINT (0x0006) Code[0]: 0x00000001...
  12. dadidoe

    Security.framework Question

    I'm building on a Tweak App, but it needs to run with priviledges. How can I use the Security.framework to do this?
  13. dadidoe

    No Universal?

    I have a problem with making my app universal. Usually, I select 10.4u as SDK and enter for architectures ppc + i386 but this time it will not work, it's still Intel! Why?
  14. dadidoe

    Creating a public.pem and private.pem key.

    How can I create a public and private key using the terminal?
  15. dadidoe

    Fonts in Popup

    Hi, I'm trying to insert the names of all avaible fonts into a popup and do the same with text size. On the class reference I found availableFontFamilies but I do not know how to use it. Could someone give me an example?
  16. dadidoe

    NSDockTile

    I have a NSDock Tile, which looks the following: - (void)setBadgeLabel:(NSString *)string { NSDockTile *tile = [[NSApplication sharedApplication] dockTile]; [tile setBadgeLabel:@"3.0"]; } There is no error/warning displayed but out of some reason there is no badge on my apps icon...
  17. dadidoe

    NSRunAlertPanel

    I have the following NSRunAlertPanel: NSRunInformationalAlertPanel(@"The Serial provided was correct!", @"Thank you for registering WriteIt!.Keep your serial,name you registered with and e-mail you registered at a safe place, it may be needed later. Have fun using WriteIt!", @"OK", nil, nil)...
Back
Top