When should I use anyObject insted of UIButton in swift? I am making an IBAction for my button that will be used to do more than on task on of the tasks is to switch to the next view.
When should I use anyObject insted of UIButton in swift?
3.9k Views Asked by Wameedh Mohammed Ali At
2
There are 2 best solutions below
0
SwiftMatt
On
The purpose of using an abstract AnyObject type for an IBAction may be advantage for a situation in which you have multiple UI objects that should trigger the same action. An example of this would be if you wanted to have a button and a gesture recognizer share the functionality of a common action. Even with a shared action, it would be possible to have different execution paths for the two objects.
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in SWIFT
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Swift code with multiple NSDateFormatter - optimization
- How do I add multiple in app purchases in Swift Spritekit?
- cellForRowAtIndexPath and prepareForSegue return different label colors
- Getting this message in my console in xcode "Ignoring restoreCompletedTransactionsWithApplicationUsername: because already restoring transactions"?
- Change background of an Accessory View in a UITableViewCell
- fade in an bounce animation subview
- Create a PFObject and PFRelation after PFUser Sign Up
- Swift 2 - Pattern matching in "if"
- How do I give inputs through NSURL
- How do I add custom cells to TableView in Swift?
- UIWebView not loading URL in simulator
- Compiler complains that 'Expression resolved to unused function' when removing index in array of functions
- Cast from 'Int?' to unrelated type 'NSNumber' always fails
Related Questions in UIBUTTON
- Image and Text locations in UIButton
- How to change position of UIButton?
- Set Background Color on UIButton when Disabled?
- Checking UIButton Image
- If statements for code generated buttons, Swift
- Trouble using UiButton as toggle switch
- Mutable global methods?
- Will handling UIButton touch event inside a UITableViewCell subclass violate MVC?
- Setting frame for UIButton ignored
- UIStackView Layout
- How to vertically center two views & divide the width equally relative to the super view?
- Multiple Buttons, But only one pressed at a time
- Customize the UIButton resize according to text length and place UILabel after that
- UITableViewCell reload selected image with pattern image
- Calling prepareforSegue from a UIButton?
Related Questions in IBACTION
- UIButton error with SKPayment
- Reference a variable value inside an @IBAction function from another class in Swift
- How can I capture a table row press action in Swift WatchKit?
- IBAction for Buttons inside static Cell do not work with didSelectRowAtIndexPath is overrided
- NSComboBox - item selected action?
- Watch for stepper value change and call function within viewDidLoad - Swift
- @IBAction crashes when recursively called
- IOS Write to BLE Characteristic using Slider
- How come my IBAction isn't connecting?
- Catch button pressure duration
- What is the convention to handle secondary action of UIButton in iOS
- Swift: How to check if a certain button pressed inside function?
- Why doesn't Xcode have a Event/Arguments when linking an object with an IBAction
- Trigger button to change text in UITextView in swift3 xcode 8 ios 10
- How to use an IBAction in another View Swift
Related Questions in ANYOBJECT
- Optional AnyObject values in Swift dictionary
- AnyObject & Cannot assign to immutable expression of type 'CGFloat'
- Looking for a fix for Swift "ambiguous use of 'object(forKey:)'"
- Can't perform methods of objects stored in Array[Any]
- Swift declaring array of multiple optional type to Any not work as expected
- how do I make a swiftui viewmodifier that accepts any object?
- How to convert [CustomClass] to [AnyObject]
- Swift 2 Dictionary<String, AnyObject> to Struct getter/setter throwing Cannot subscript value ... with an index of type 'String'
- Extending Optional<Dictionary<String, AnyObject>>
- How to save nested data model in Firebase? Swift Error: Can only store objects of > type NSNumber, NSString, NSDictionary, and NSArray
- Float value returns with double quotes from [String: AnyObject] in swift
- Sort array of objects into ascending order
- Class-only protocol as typealias for associatedtype with AnyObject constraints
- Strange Any? as AnyObject behaviour
- Swift AnyObject's subscript, where did it come from?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Ultimately, it really doesn't matter.
You can choose to use the parameter of
(sender: AnyObject)or you can use(sender: UIButton).There might be times however where you might have to cast
AnyObjectas aUIButtonif you need access to the properties provided byUIButton.For example let's say you have and you want the button to disappear after it is clicked.