9

XCode でまったく新しいプロジェクトを作成し、AppDelegate.py ファイルに次のように記述しました。

from Foundation import *
from AppKit import *

class MyApplicationAppDelegate(NSObject):
    def applicationDidFinishLaunching_(self, sender):
        NSLog("Application did finish launching.")

        statusItem = NSStatusBar.systemStatusBar().statusItemWithLength_(NSVariableStatusItemLength)
        statusItem.setTitle_(u"12%")
        statusItem.setHighlightMode_(TRUE)
        statusItem.setEnabled_(TRUE)

ただし、アプリケーションを起動すると、ステータス バーの項目が表示されません。main.py と main.m の他のすべてのコードはデフォルトです。

4

2 に答える 2

6

applicationDidFinishLaunching()メソッドから戻るとstatusItemが破棄されるため、上記の.retain()の使用が必要です。代わりにself.statusItemを使用して、MyApplicationAppDelegateのインスタンスのフィールドとしてその変数をバインドします。

これは、.xib/などを必要としない変更された例です。

from Foundation import *
from AppKit import *
from PyObjCTools import AppHelper

start_time = NSDate.date()


class MyApplicationAppDelegate(NSObject):

    state = 'idle'

    def applicationDidFinishLaunching_(self, sender):
        NSLog("Application did finish launching.")

        self.statusItem = NSStatusBar.systemStatusBar().statusItemWithLength_(NSVariableStatusItemLength)
        self.statusItem.setTitle_(u"Hello World")
        self.statusItem.setHighlightMode_(TRUE)
        self.statusItem.setEnabled_(TRUE)

        # Get the timer going
        self.timer = NSTimer.alloc().initWithFireDate_interval_target_selector_userInfo_repeats_(start_time, 5.0, self, 'tick:', None, True)
        NSRunLoop.currentRunLoop().addTimer_forMode_(self.timer, NSDefaultRunLoopMode)
        self.timer.fire()

    def sync_(self, notification):
        print "sync"

    def tick_(self, notification):
        print self.state


if __name__ == "__main__":
    app = NSApplication.sharedApplication()
    delegate = MyApplicationAppDelegate.alloc().init()
    app.setDelegate_(delegate)
    AppHelper.runEventLoop()
于 2010-12-07T17:27:19.400 に答える
5

私はそれを機能させるためにこれをしなければなりませんでした:

  1. MainMenu.xib を開きます。アプリ デリゲートのクラスが であることを確認してくださいMyApplicationAppDelegate。あなたがこれをしなければならないかどうかはわかりませんが、私はそうしました。それは間違っていたので、そもそもアプリ デリゲートが呼び出されませんでした。

  2. statusItem.retain()すぐに自動解放されるので追加します。

于 2008-09-26T21:41:54.733 に答える