change the color of uiview when pressed/released












0















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 ?










share|improve this question

























  • 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
















0















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 ?










share|improve this question

























  • 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














0












0








0








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 ?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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



















  • 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

















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












1 Answer
1






active

oldest

votes


















2














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!






share|improve this answer


























  • 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











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
});


}
});














draft saved

draft discarded


















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









2














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!






share|improve this answer


























  • 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
















2














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!






share|improve this answer


























  • 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














2












2








2







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!






share|improve this answer















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!







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 23 '18 at 7:15

























answered Nov 23 '18 at 6:50









NatarajanNatarajan

2,29131126




2,29131126













  • 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











  • 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




















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini