change the color of uiview when pressed/released
Is there a way to change color of the uiview when pressed and released.
I tried it using touchesBegan and touchesEnded by overriding it but it effected the existing functionality. so without effecting the existing functionality can we achieve it ?
ios swift uiview
add a comment |
Is there a way to change color of the uiview when pressed and released.
I tried it using touchesBegan and touchesEnded by overriding it but it effected the existing functionality. so without effecting the existing functionality can we achieve it ?
ios swift uiview
What does this view do? Maybe you should be using aUIButton
instead.
– Rakesha Shastri
Nov 23 '18 at 6:45
3
Possible duplicate of How to make uiview change color when pressed?
– Rakesha Shastri
Nov 23 '18 at 6:46
Add a UITapGestureRecognizer to the view. When touch state is begin set the color and release change to another color when state is released.
– Sateesh
Nov 23 '18 at 6:46
@Sateesh how to detect the state of uiview?
– Rakesh
Nov 23 '18 at 7:02
Like the answer state by @Natarajan.
– Sateesh
Nov 23 '18 at 7:20
add a comment |
Is there a way to change color of the uiview when pressed and released.
I tried it using touchesBegan and touchesEnded by overriding it but it effected the existing functionality. so without effecting the existing functionality can we achieve it ?
ios swift uiview
Is there a way to change color of the uiview when pressed and released.
I tried it using touchesBegan and touchesEnded by overriding it but it effected the existing functionality. so without effecting the existing functionality can we achieve it ?
ios swift uiview
ios swift uiview
edited Nov 23 '18 at 7:54
Rakesh
asked Nov 23 '18 at 6:43
RakeshRakesh
378
378
What does this view do? Maybe you should be using aUIButton
instead.
– Rakesha Shastri
Nov 23 '18 at 6:45
3
Possible duplicate of How to make uiview change color when pressed?
– Rakesha Shastri
Nov 23 '18 at 6:46
Add a UITapGestureRecognizer to the view. When touch state is begin set the color and release change to another color when state is released.
– Sateesh
Nov 23 '18 at 6:46
@Sateesh how to detect the state of uiview?
– Rakesh
Nov 23 '18 at 7:02
Like the answer state by @Natarajan.
– Sateesh
Nov 23 '18 at 7:20
add a comment |
What does this view do? Maybe you should be using aUIButton
instead.
– Rakesha Shastri
Nov 23 '18 at 6:45
3
Possible duplicate of How to make uiview change color when pressed?
– Rakesha Shastri
Nov 23 '18 at 6:46
Add a UITapGestureRecognizer to the view. When touch state is begin set the color and release change to another color when state is released.
– Sateesh
Nov 23 '18 at 6:46
@Sateesh how to detect the state of uiview?
– Rakesh
Nov 23 '18 at 7:02
Like the answer state by @Natarajan.
– Sateesh
Nov 23 '18 at 7:20
What does this view do? Maybe you should be using a
UIButton
instead.– Rakesha Shastri
Nov 23 '18 at 6:45
What does this view do? Maybe you should be using a
UIButton
instead.– Rakesha Shastri
Nov 23 '18 at 6:45
3
3
Possible duplicate of How to make uiview change color when pressed?
– Rakesha Shastri
Nov 23 '18 at 6:46
Possible duplicate of How to make uiview change color when pressed?
– Rakesha Shastri
Nov 23 '18 at 6:46
Add a UITapGestureRecognizer to the view. When touch state is begin set the color and release change to another color when state is released.
– Sateesh
Nov 23 '18 at 6:46
Add a UITapGestureRecognizer to the view. When touch state is begin set the color and release change to another color when state is released.
– Sateesh
Nov 23 '18 at 6:46
@Sateesh how to detect the state of uiview?
– Rakesh
Nov 23 '18 at 7:02
@Sateesh how to detect the state of uiview?
– Rakesh
Nov 23 '18 at 7:02
Like the answer state by @Natarajan.
– Sateesh
Nov 23 '18 at 7:20
Like the answer state by @Natarajan.
– Sateesh
Nov 23 '18 at 7:20
add a comment |
1 Answer
1
active
oldest
votes
You can use UIGestureRecognizer
to detect touch events on your view. Please refer below links for more info.
https://www.raywenderlich.com/433-uigesturerecognizer-tutorial-getting-started
https://developer.apple.com/documentation/uikit/uipangesturerecognizer
Example:
let myView = UIView()
let gesture = UITapGestureRecognizer(target: self, action: #selector(tapEventDetected(gesture:)))
myView.addGestureRecognizer(gesture)
@objc func tapEventDetected(gesture:UITapGestureRecognizer){
if gesture.state == .began{
//Set touch began color
}
if gesture.state = .ended{
//Set touch ended color
}
}
Thanks!
I had tried using the touches began and touches ended method but it had impacted the original functionality
– Rakesh
Nov 23 '18 at 7:02
Okay, So that I recommended you to use UIGestureRecognizer. Please see example code in my edited answer.
– Natarajan
Nov 23 '18 at 7:16
Thanks for the solution it worked for me.
– Rakesh
Nov 23 '18 at 7:53
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53441789%2fchange-the-color-of-uiview-when-pressed-released%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use UIGestureRecognizer
to detect touch events on your view. Please refer below links for more info.
https://www.raywenderlich.com/433-uigesturerecognizer-tutorial-getting-started
https://developer.apple.com/documentation/uikit/uipangesturerecognizer
Example:
let myView = UIView()
let gesture = UITapGestureRecognizer(target: self, action: #selector(tapEventDetected(gesture:)))
myView.addGestureRecognizer(gesture)
@objc func tapEventDetected(gesture:UITapGestureRecognizer){
if gesture.state == .began{
//Set touch began color
}
if gesture.state = .ended{
//Set touch ended color
}
}
Thanks!
I had tried using the touches began and touches ended method but it had impacted the original functionality
– Rakesh
Nov 23 '18 at 7:02
Okay, So that I recommended you to use UIGestureRecognizer. Please see example code in my edited answer.
– Natarajan
Nov 23 '18 at 7:16
Thanks for the solution it worked for me.
– Rakesh
Nov 23 '18 at 7:53
add a comment |
You can use UIGestureRecognizer
to detect touch events on your view. Please refer below links for more info.
https://www.raywenderlich.com/433-uigesturerecognizer-tutorial-getting-started
https://developer.apple.com/documentation/uikit/uipangesturerecognizer
Example:
let myView = UIView()
let gesture = UITapGestureRecognizer(target: self, action: #selector(tapEventDetected(gesture:)))
myView.addGestureRecognizer(gesture)
@objc func tapEventDetected(gesture:UITapGestureRecognizer){
if gesture.state == .began{
//Set touch began color
}
if gesture.state = .ended{
//Set touch ended color
}
}
Thanks!
I had tried using the touches began and touches ended method but it had impacted the original functionality
– Rakesh
Nov 23 '18 at 7:02
Okay, So that I recommended you to use UIGestureRecognizer. Please see example code in my edited answer.
– Natarajan
Nov 23 '18 at 7:16
Thanks for the solution it worked for me.
– Rakesh
Nov 23 '18 at 7:53
add a comment |
You can use UIGestureRecognizer
to detect touch events on your view. Please refer below links for more info.
https://www.raywenderlich.com/433-uigesturerecognizer-tutorial-getting-started
https://developer.apple.com/documentation/uikit/uipangesturerecognizer
Example:
let myView = UIView()
let gesture = UITapGestureRecognizer(target: self, action: #selector(tapEventDetected(gesture:)))
myView.addGestureRecognizer(gesture)
@objc func tapEventDetected(gesture:UITapGestureRecognizer){
if gesture.state == .began{
//Set touch began color
}
if gesture.state = .ended{
//Set touch ended color
}
}
Thanks!
You can use UIGestureRecognizer
to detect touch events on your view. Please refer below links for more info.
https://www.raywenderlich.com/433-uigesturerecognizer-tutorial-getting-started
https://developer.apple.com/documentation/uikit/uipangesturerecognizer
Example:
let myView = UIView()
let gesture = UITapGestureRecognizer(target: self, action: #selector(tapEventDetected(gesture:)))
myView.addGestureRecognizer(gesture)
@objc func tapEventDetected(gesture:UITapGestureRecognizer){
if gesture.state == .began{
//Set touch began color
}
if gesture.state = .ended{
//Set touch ended color
}
}
Thanks!
edited Nov 23 '18 at 7:15
answered Nov 23 '18 at 6:50
NatarajanNatarajan
2,26131025
2,26131025
I had tried using the touches began and touches ended method but it had impacted the original functionality
– Rakesh
Nov 23 '18 at 7:02
Okay, So that I recommended you to use UIGestureRecognizer. Please see example code in my edited answer.
– Natarajan
Nov 23 '18 at 7:16
Thanks for the solution it worked for me.
– Rakesh
Nov 23 '18 at 7:53
add a comment |
I had tried using the touches began and touches ended method but it had impacted the original functionality
– Rakesh
Nov 23 '18 at 7:02
Okay, So that I recommended you to use UIGestureRecognizer. Please see example code in my edited answer.
– Natarajan
Nov 23 '18 at 7:16
Thanks for the solution it worked for me.
– Rakesh
Nov 23 '18 at 7:53
I had tried using the touches began and touches ended method but it had impacted the original functionality
– Rakesh
Nov 23 '18 at 7:02
I had tried using the touches began and touches ended method but it had impacted the original functionality
– Rakesh
Nov 23 '18 at 7:02
Okay, So that I recommended you to use UIGestureRecognizer. Please see example code in my edited answer.
– Natarajan
Nov 23 '18 at 7:16
Okay, So that I recommended you to use UIGestureRecognizer. Please see example code in my edited answer.
– Natarajan
Nov 23 '18 at 7:16
Thanks for the solution it worked for me.
– Rakesh
Nov 23 '18 at 7:53
Thanks for the solution it worked for me.
– Rakesh
Nov 23 '18 at 7:53
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53441789%2fchange-the-color-of-uiview-when-pressed-released%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What does this view do? Maybe you should be using a
UIButton
instead.– Rakesha Shastri
Nov 23 '18 at 6:45
3
Possible duplicate of How to make uiview change color when pressed?
– Rakesha Shastri
Nov 23 '18 at 6:46
Add a UITapGestureRecognizer to the view. When touch state is begin set the color and release change to another color when state is released.
– Sateesh
Nov 23 '18 at 6:46
@Sateesh how to detect the state of uiview?
– Rakesh
Nov 23 '18 at 7:02
Like the answer state by @Natarajan.
– Sateesh
Nov 23 '18 at 7:20