Unwanted red lines when the unwind segue is performed












0















I have a view controller, embedded in a navigation controller, which has a button and connects me with another view controller with a button. I have ctrl dragged from the button of the second view controller to the exit in the Storyboard creating an unwind segue. While the unwind segue works as wanted (When I click the button it removes the current view controller and gets me to the first view controller) but once that happens my current view has some red lines for no apparent reason. Why does this happen? Has to do with my Xcode installation or does it have to do with Xcode in general?red lines in my view



I have Xcode 10.1 and although there is nothing fancy in my code here it is anyway:



import UIKit

class PresentedViewController: UIViewController {
@IBAction func myUnwindAction(unwindSegue: UIStoryboardSegue)
{
print("You learned to use unwindSegue")
}
}









share|improve this question




















  • 1





    Have you added constraints for your buttons? Do you have any constraints warnings or errors in your storyboard?

    – Paulw11
    Nov 24 '18 at 20:00











  • Thank you for taking the time to answer! I have no warnings or errors in my storyboard. If you replicate exactly what I did in your Xcode, do you get those red lines too?

    – Korpel
    Nov 24 '18 at 20:05






  • 2





    Have you tried running this on an actual device?

    – Jad Ghadry
    Nov 24 '18 at 20:30






  • 1





    I see artifacts like this in the simulator all of the time. I think it's due to the scaling of the simulator. A real device is very unlikely to show the same results.

    – rmaddy
    Nov 25 '18 at 0:11











  • I haven't tried running it on an actual device no

    – Korpel
    Nov 25 '18 at 17:37
















0















I have a view controller, embedded in a navigation controller, which has a button and connects me with another view controller with a button. I have ctrl dragged from the button of the second view controller to the exit in the Storyboard creating an unwind segue. While the unwind segue works as wanted (When I click the button it removes the current view controller and gets me to the first view controller) but once that happens my current view has some red lines for no apparent reason. Why does this happen? Has to do with my Xcode installation or does it have to do with Xcode in general?red lines in my view



I have Xcode 10.1 and although there is nothing fancy in my code here it is anyway:



import UIKit

class PresentedViewController: UIViewController {
@IBAction func myUnwindAction(unwindSegue: UIStoryboardSegue)
{
print("You learned to use unwindSegue")
}
}









share|improve this question




















  • 1





    Have you added constraints for your buttons? Do you have any constraints warnings or errors in your storyboard?

    – Paulw11
    Nov 24 '18 at 20:00











  • Thank you for taking the time to answer! I have no warnings or errors in my storyboard. If you replicate exactly what I did in your Xcode, do you get those red lines too?

    – Korpel
    Nov 24 '18 at 20:05






  • 2





    Have you tried running this on an actual device?

    – Jad Ghadry
    Nov 24 '18 at 20:30






  • 1





    I see artifacts like this in the simulator all of the time. I think it's due to the scaling of the simulator. A real device is very unlikely to show the same results.

    – rmaddy
    Nov 25 '18 at 0:11











  • I haven't tried running it on an actual device no

    – Korpel
    Nov 25 '18 at 17:37














0












0








0








I have a view controller, embedded in a navigation controller, which has a button and connects me with another view controller with a button. I have ctrl dragged from the button of the second view controller to the exit in the Storyboard creating an unwind segue. While the unwind segue works as wanted (When I click the button it removes the current view controller and gets me to the first view controller) but once that happens my current view has some red lines for no apparent reason. Why does this happen? Has to do with my Xcode installation or does it have to do with Xcode in general?red lines in my view



I have Xcode 10.1 and although there is nothing fancy in my code here it is anyway:



import UIKit

class PresentedViewController: UIViewController {
@IBAction func myUnwindAction(unwindSegue: UIStoryboardSegue)
{
print("You learned to use unwindSegue")
}
}









share|improve this question
















I have a view controller, embedded in a navigation controller, which has a button and connects me with another view controller with a button. I have ctrl dragged from the button of the second view controller to the exit in the Storyboard creating an unwind segue. While the unwind segue works as wanted (When I click the button it removes the current view controller and gets me to the first view controller) but once that happens my current view has some red lines for no apparent reason. Why does this happen? Has to do with my Xcode installation or does it have to do with Xcode in general?red lines in my view



I have Xcode 10.1 and although there is nothing fancy in my code here it is anyway:



import UIKit

class PresentedViewController: UIViewController {
@IBAction func myUnwindAction(unwindSegue: UIStoryboardSegue)
{
print("You learned to use unwindSegue")
}
}






ios ios-simulator unwind-segue xcode10.1






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 25 '18 at 0:11









rmaddy

243k27321383




243k27321383










asked Nov 24 '18 at 19:40









KorpelKorpel

1,6411626




1,6411626








  • 1





    Have you added constraints for your buttons? Do you have any constraints warnings or errors in your storyboard?

    – Paulw11
    Nov 24 '18 at 20:00











  • Thank you for taking the time to answer! I have no warnings or errors in my storyboard. If you replicate exactly what I did in your Xcode, do you get those red lines too?

    – Korpel
    Nov 24 '18 at 20:05






  • 2





    Have you tried running this on an actual device?

    – Jad Ghadry
    Nov 24 '18 at 20:30






  • 1





    I see artifacts like this in the simulator all of the time. I think it's due to the scaling of the simulator. A real device is very unlikely to show the same results.

    – rmaddy
    Nov 25 '18 at 0:11











  • I haven't tried running it on an actual device no

    – Korpel
    Nov 25 '18 at 17:37














  • 1





    Have you added constraints for your buttons? Do you have any constraints warnings or errors in your storyboard?

    – Paulw11
    Nov 24 '18 at 20:00











  • Thank you for taking the time to answer! I have no warnings or errors in my storyboard. If you replicate exactly what I did in your Xcode, do you get those red lines too?

    – Korpel
    Nov 24 '18 at 20:05






  • 2





    Have you tried running this on an actual device?

    – Jad Ghadry
    Nov 24 '18 at 20:30






  • 1





    I see artifacts like this in the simulator all of the time. I think it's due to the scaling of the simulator. A real device is very unlikely to show the same results.

    – rmaddy
    Nov 25 '18 at 0:11











  • I haven't tried running it on an actual device no

    – Korpel
    Nov 25 '18 at 17:37








1




1





Have you added constraints for your buttons? Do you have any constraints warnings or errors in your storyboard?

– Paulw11
Nov 24 '18 at 20:00





Have you added constraints for your buttons? Do you have any constraints warnings or errors in your storyboard?

– Paulw11
Nov 24 '18 at 20:00













Thank you for taking the time to answer! I have no warnings or errors in my storyboard. If you replicate exactly what I did in your Xcode, do you get those red lines too?

– Korpel
Nov 24 '18 at 20:05





Thank you for taking the time to answer! I have no warnings or errors in my storyboard. If you replicate exactly what I did in your Xcode, do you get those red lines too?

– Korpel
Nov 24 '18 at 20:05




2




2





Have you tried running this on an actual device?

– Jad Ghadry
Nov 24 '18 at 20:30





Have you tried running this on an actual device?

– Jad Ghadry
Nov 24 '18 at 20:30




1




1





I see artifacts like this in the simulator all of the time. I think it's due to the scaling of the simulator. A real device is very unlikely to show the same results.

– rmaddy
Nov 25 '18 at 0:11





I see artifacts like this in the simulator all of the time. I think it's due to the scaling of the simulator. A real device is very unlikely to show the same results.

– rmaddy
Nov 25 '18 at 0:11













I haven't tried running it on an actual device no

– Korpel
Nov 25 '18 at 17:37





I haven't tried running it on an actual device no

– Korpel
Nov 25 '18 at 17:37












0






active

oldest

votes











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%2f53461742%2funwanted-red-lines-when-the-unwind-segue-is-performed%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















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%2f53461742%2funwanted-red-lines-when-the-unwind-segue-is-performed%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







Popular posts from this blog

Costa Masnaga

Fotorealismo

Sidney Franklin