addtarget

    0熱度

    1回答

    我試圖將UIStepper併入UITextField,同時遞增步進器的值,UITextField將其更新爲該值。每當我跑我的應用程序並點擊步進的「+」按鈕 "Terminating app due to uncaught exception ''NSInvalidArgumentException', reason: '-[Calculator.SplitViewController steppe

    0熱度

    2回答

    不知道我在這裏的想法是否正確,但是我在整個iOS項目中都使用了類似的動畫,並且我想將它濃縮爲1個文件並隨時隨地重複使用。 一個簡單的例子。在我的動畫文件,我有一個規模的動畫 Animations.swift class Animations { class func scaleSmall(_ view: UIView) { let scaleAnim = POPBasicA

    1熱度

    3回答

    我想只要總金額已編輯更新文字欄,我想以下幾點: totalAmount.addTarget(self, action: "changeTextField2:", forControlEvents: UIControlEvents.EditingDidEndOnExit) func changeTextField2(textField: UITextField) { print("T

    0熱度

    2回答

    我正在設計一個簡單的Sudoku應用程序,並且需要在單擊81個按鈕中的任何一個時觸發動作。我在視圖控制器創建UIButtons數組: class SudokuBoardController : UIViewController { @IBOutlet var collectionOfButtons: Array<UIButton>? override func viewDidLoad

    1熱度

    3回答

    在我的代碼中,我必須將兩個參數傳遞給targetMethod printMethod,我可以將button.tag作爲一個參數傳遞,以及如何傳遞另一個參數? 請舉個例子。 我的代碼: button.tag = indexPath.row; secondArgument = indexPath.section; [button addTarget:self action:@selector(pr

    0熱度

    1回答

    我目前正在構建應用程序的UI,而不使用IB或故事板。我有以下層次結構: 1. ViewController:它是主視圖控制器。 2. DrawerViewController:它是下部抽屜菜單的視圖控制器。 主視圖控制器將作爲子視圖添加drawerViewController的視圖。 3.添加按鈕:這是一個創建的UIButton,並以編程方式添加到drawerViewController的視圖。

    1熱度

    1回答

    我必須以編程方式定義(不使用任何IBAction)一個UIButton,當tap獲取3個NSString參數的值並執行Segue。 用於執行Segue公司的方法是通過稱爲: [myButton addTarget:self action:@selector(myButtonTapped:) forControlEvents:UIControlEventTouchUpInside]; 然後爲執行

    2熱度

    1回答

    我試圖找出爲什麼self指向GameViewController代替回答 GameViewController.swift class GameViewController: UIViewController { var gameplay = QuestionsController(colors: colors) override func viewDidLoad() {

    1熱度

    1回答

    在我MainMainViewController我創造了新的UIView(ContentView)。我設置了 DetailViewController *detailView = [[DetailViewController alloc] initWithObject:paAnnotation]; detailView.view.frame = CGRectMake(0,

    4熱度

    1回答

    目前,我有2個這樣的目標。 當我創造了一些文件,它只能選擇1默認這樣。我必須手動選擇所有目標。 我怕開發商可能會犯一些錯誤,不添加到應用程序商店的版本。有什麼辦法可以自動選擇兩個目標?或者至少,默認情況下,應選擇App Store版本。