我的on applicationWillFinishLaunching_(aNotification)
處理程序不工作。它適用於我的「xib」IB,但它不適用於我的「.storyboard」IB。我應該在哪裏看?我搜索了很多尋找任何說「applicationWillFinnishLaunching」但沒有運氣的東西。該處理程序只適用於我的主要故事板是「.xib」文件,但是當它成爲「.storyboard」時它不起作用。applicationwillfinishaunching handler not working applescript xcode
回答
我正在使用故事板文件而不是用於我的界面的xib文件。我怎樣才能在故事板上獲得同樣的鏈接?下面的圖片:https://drive.google.com/open?id=0BzaQ6L3vezqkV3lNMk5GNFp0ZkU –
不要在故事板中使用applescript。一些原因:幾乎沒有支持!搜索「Xcode Storyboard Applescript」,你會發現......幾乎沒有任何東西。較少支持=平坦的學習曲線。故事板基於ViewControllers,每個場景都是獨立處理的。無法使用ApplescriptObjC的有限可能性進行映射,例如你不能繼承任何東西。用xib重建它。使用applescript開發要快得多。 –
感謝您的諮詢!我將在XIB上重建它。我真的不知道這個術語,但是如何添加動作和彈出窗口?例如:https://drive.google.com/open?id=0BzaQ6L3vezqkYzVjVmU1dUtrRHM –
- 1. AppleScript + Xcode「applicationShouldTerminateAfterLastWindowClosed_(sender)」not working
- 2. set volume not working in xcode with applescript cocoa objc
- 3. XCode 6 UICollectionview viewwithtag not working
- 4. xcode code sense color/completion not working
- 5. Swift Type Inference Not Working(Xcode 7.1.1)
- 6. registerForRemoteNotificationTypes not working iOS7 xcode 6
- 7. Generic Handler not firing
- 8. iAd Banner not working
- 9. req.isAuthenticated not working
- 10. Gauge Scale not working
- 11. LINQ「not in」not working
- 12. Express.js request.body does not working
- 13. Javascript Scroll Handler not firing
- 14. String.replaceOccurrences(of :) with :) not working?
- 15. Swift-Scale SKAction not working
- 16. FadeIn jquery [not working]
- 17. Listview listselector not working
- 18. Sortable not working properly
- 19. $ wpdb insert not working
- 20. GQLQuery with_cursor not working
- 21. Javascript:return true not working
- 22. 3DTouch UIPreviewAction:performseguewithidentifier not working
- 23. Navbar not working mobile
- 24. Jquery.then not working
- 25. setImageResource not working
- 26. URL shortend not working
- 27. org.plasma.query.OrderBy not working
- 28. Async:False not working
- 29. ViewGroup Animation Not Working
- 30. PyMongo find_one not working
這是仍在您的其他線程上打開的相同問題。這完全很難理解你想要什麼。看來(看到這個和你的其他問題)你甚至不知道使用XCODE的基礎知識,我建議你做更多的培訓和基本教程 –
@Pat_Morita我已經使用xcode 4個月了,我非常熟悉如何使用它。當我無法弄清楚什麼時,我會問堆棧溢出。我之前詢問過的問題是:處理程序applicationWillFinishLaunching_(aNotification)鏈接到接口生成器,因爲問題不在我的代碼中,它與故事板一起使用。但是,真正讓我困惑的是,當我使用「.xib」IB而不是「.storyboard」IB時,會調用處理程序(我只是認爲這對於解決問題可能會有所幫助)。這是解釋我的問題的最佳方式。 –
這正是我的意思。 applicationWillFinishLaunching_是通過應用程序委託調用的處理程序。應用程序委託在IB中鏈接。而不是處理程序本身。這是XCode中的一些非常基本的東西。而IB是接口生成器。用你建立故事板的漂亮的拖放工具。還有一些非常基本的東西。請檢查新創建的XCode項目上的連接(正如在另一個相同問題中告訴您的那樣),如下面的答案 –