Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

THIS QUESTION RELATES TO SWIFT4 AND XCODE9! I am trying to setup an UIGestureRecognizer instance to change the colors of 5 views associated with a

THIS QUESTION RELATES TO SWIFT4 AND XCODE9!

I am trying to setup an UIGestureRecognizer instance to change the colors of 5 views associated with a StackView. I have the following code in my project, however when I tap the screen, I get an error: Thread 1: signal SIGABRT in appDelegate.swift which is unchanged. Here is my code, followed by a picture of the main storyboard:

ViewController.swift:

import UIKit

class ViewController: UIViewController {

@IBOutlet weak var stackView: UIStackView!

@IBOutlet weak var firstView: UIView!

@IBOutlet weak var secondView: UIView!

@IBOutlet weak var thirdView: UIView!

@IBOutlet weak var fourthView: UIView!

@IBOutlet weak var fifthView: UIView!

var model = ColorChangerModel()

override func viewDidLoad() {

super.viewDidLoad()

var wasTap = UITapGestureRecognizer(target: self, action: Selector("tapMe:"))

stackView.addGestureRecognizer(wasTap)

stackView.isUserInteractionEnabled = true;

firstView.backgroundColor = model.getFirstColor()

stackView.addSubview(firstView)

secondView.backgroundColor = model.getSecondColor()

stackView.addSubview(secondView)

thirdView.backgroundColor = model.getThirdColor()

stackView.addSubview(thirdView)

fourthView.backgroundColor = model.getFourthColor()

stackView.addSubview(fourthView)

fifthView.backgroundColor = model.getFifthColor()

stackView.addSubview(fifthView)

}

func tapMe(sender:UIGestureRecognizer){

firstView.backgroundColor = model.getFirstColor()

secondView.backgroundColor = model.getSecondColor()

thirdView.backgroundColor = model.getThirdColor()

fourthView.backgroundColor = model.getFourthColor()

}

}

ColorChangerManager.swift

import UIKit

struct ColorChangerManager {

//declare a reference to an array of UIColors and an integer index.

let colors: [UIColor]

var index: Int

mutating func getNextColor() -> UIColor {

//if the index is the same as the amount of items in count, return it to 0

if index == colors.count {

index = 0

}

//value returned is a color in the array

let value = colors[index]

//increment index

index += 1

return value

}

}

ColorChangerModel.swift

import UIKit

class ColorChangerModel {

private static let colorsArray = [UIColor.black,

UIColor.blue,

UIColor.brown,

UIColor.cyan,

UIColor.darkGray,

UIColor.gray,

UIColor.green,

UIColor.purple,

UIColor.orange,

UIColor.magenta,

UIColor.lightGray,

UIColor.red,

UIColor.yellow

]

var firstView = ColorChangerManager(colors: colorsArray, index: 0)

var secondView = ColorChangerManager(colors: colorsArray, index: 1)

var thirdView = ColorChangerManager(colors: colorsArray, index: 2)

var fourthView = ColorChangerManager(colors: colorsArray, index: 3)

var fifthView = ColorChangerManager(colors: colorsArray, index: 4)

func getFirstColor() -> UIColor {

return firstView.getNextColor()

}

func getSecondColor() -> UIColor {

return secondView.getNextColor()

}

func getThirdColor() -> UIColor {

return thirdView.getNextColor()

}

func getFourthColor() -> UIColor {

return fourthView.getNextColor()

}

func getFifthColor() -> UIColor{

return fifthView.getNextColor()

}

}

image text in transcribed

a > ColorChanger 88 ColorChanger-Supporting Files e Main storyboard Main storyboard (Base >View Controller Scene View Controller M view Controller Scene View Controller View Simulated Metrics Supporting Files Size Interred Top Bar Inferred Bottom Bar Inferred LaunchScr..oryoard Mainstoryboard R Safe Aree Stack View First View Second View Third View Fourth Vicw Fifth View View Controller Title ViewContraller.swift M Is Initial View Controller Info.plist Layout Adjust Scroll View Insets ColorChan ager.swift A ColorChan..odel.swift A -1 Hide Bottom Bar on Push Resize View From NIB Use Full Screen (Deprecated) L Swipe Right to Change Colors Extend EdgesUnder Top Bars First Responder Exit Swipe Gesture Recognizer Storyboard Entry Point ColorChangerTests.swift Info.plist Under Bottom Bars Under Opaque Bars ColorChang ITests.swift Info.plist Transition Style Cover Vertical Presentation Full Screen Products Defines Contex Provides Context Content Size Use Preterred Explicit Size 375 667 width Height Key Commands Swipe Right to Change Colors Key Enter Key Selector action Switch - Displays an element showing the baclean state af a value Allows tapping the control to toggle t... Filter view as: iPhone 8 (WC RI 54% + Swipe Gesture Recognizer 24 1ibdyld.dylib exeeee0081137f11956 start1 bc++abi.dylb: terminating with uncaught exception of type NSException (11db) Auto All Output Filter a > ColorChanger 88 ColorChanger-Supporting Files e Main storyboard Main storyboard (Base >View Controller Scene View Controller M view Controller Scene View Controller View Simulated Metrics Supporting Files Size Interred Top Bar Inferred Bottom Bar Inferred LaunchScr..oryoard Mainstoryboard R Safe Aree Stack View First View Second View Third View Fourth Vicw Fifth View View Controller Title ViewContraller.swift M Is Initial View Controller Info.plist Layout Adjust Scroll View Insets ColorChan ager.swift A ColorChan..odel.swift A -1 Hide Bottom Bar on Push Resize View From NIB Use Full Screen (Deprecated) L Swipe Right to Change Colors Extend EdgesUnder Top Bars First Responder Exit Swipe Gesture Recognizer Storyboard Entry Point ColorChangerTests.swift Info.plist Under Bottom Bars Under Opaque Bars ColorChang ITests.swift Info.plist Transition Style Cover Vertical Presentation Full Screen Products Defines Contex Provides Context Content Size Use Preterred Explicit Size 375 667 width Height Key Commands Swipe Right to Change Colors Key Enter Key Selector action Switch - Displays an element showing the baclean state af a value Allows tapping the control to toggle t... Filter view as: iPhone 8 (WC RI 54% + Swipe Gesture Recognizer 24 1ibdyld.dylib exeeee0081137f11956 start1 bc++abi.dylb: terminating with uncaught exception of type NSException (11db) Auto All Output Filter

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Processing Fundamentals Design And Implementation

Authors: KROENKE DAVID M.

1st Edition

8120322258, 978-8120322257

More Books

Students also viewed these Databases questions

Question

How do Data Types perform data validation?

Answered: 1 week ago

Question

How does Referential Integrity work?

Answered: 1 week ago