Draw lines in swift 3.0












1















I used the following code to no avail in Swift 3.0 - it gives me a blank screen on the simulator - I don't know what's happening.



import UIKit

class DrawExample: UIView {

override func draw( _ rect: CGRect) {

let context = UIGraphicsGetCurrentContext()
context!.setLineWidth(3.0)
context!.setStrokeColor(UIColor.purple.cgColor)

//make and invisible path first then we fill it in
context!.move(to: CGPoint(x: 50, y: 60))
context!.addLine(to: CGPoint(x: 250, y:320))
context!.strokePath()
}









share|improve this question

























  • Possible duplicate of How to draw a line in Swift 3

    – Krunal
    Jul 25 '17 at 11:59
















1















I used the following code to no avail in Swift 3.0 - it gives me a blank screen on the simulator - I don't know what's happening.



import UIKit

class DrawExample: UIView {

override func draw( _ rect: CGRect) {

let context = UIGraphicsGetCurrentContext()
context!.setLineWidth(3.0)
context!.setStrokeColor(UIColor.purple.cgColor)

//make and invisible path first then we fill it in
context!.move(to: CGPoint(x: 50, y: 60))
context!.addLine(to: CGPoint(x: 250, y:320))
context!.strokePath()
}









share|improve this question

























  • Possible duplicate of How to draw a line in Swift 3

    – Krunal
    Jul 25 '17 at 11:59














1












1








1








I used the following code to no avail in Swift 3.0 - it gives me a blank screen on the simulator - I don't know what's happening.



import UIKit

class DrawExample: UIView {

override func draw( _ rect: CGRect) {

let context = UIGraphicsGetCurrentContext()
context!.setLineWidth(3.0)
context!.setStrokeColor(UIColor.purple.cgColor)

//make and invisible path first then we fill it in
context!.move(to: CGPoint(x: 50, y: 60))
context!.addLine(to: CGPoint(x: 250, y:320))
context!.strokePath()
}









share|improve this question
















I used the following code to no avail in Swift 3.0 - it gives me a blank screen on the simulator - I don't know what's happening.



import UIKit

class DrawExample: UIView {

override func draw( _ rect: CGRect) {

let context = UIGraphicsGetCurrentContext()
context!.setLineWidth(3.0)
context!.setStrokeColor(UIColor.purple.cgColor)

//make and invisible path first then we fill it in
context!.move(to: CGPoint(x: 50, y: 60))
context!.addLine(to: CGPoint(x: 250, y:320))
context!.strokePath()
}






ios swift swift3






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 25 '17 at 11:56









Parth Adroja

7,29942250




7,29942250










asked Jul 25 '17 at 11:54









Yash AdnaniYash Adnani

62




62













  • Possible duplicate of How to draw a line in Swift 3

    – Krunal
    Jul 25 '17 at 11:59



















  • Possible duplicate of How to draw a line in Swift 3

    – Krunal
    Jul 25 '17 at 11:59

















Possible duplicate of How to draw a line in Swift 3

– Krunal
Jul 25 '17 at 11:59





Possible duplicate of How to draw a line in Swift 3

– Krunal
Jul 25 '17 at 11:59












2 Answers
2






active

oldest

votes


















2














Update your class with below:



import UIKit

class DrawExample: UIView {

override init(frame: CGRect) {
super.init(frame: frame)
}

required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}

override func draw( _ rect: CGRect) {
let context = UIGraphicsGetCurrentContext()
context!.setLineWidth(3.0)
context!.setStrokeColor(UIColor.purple.cgColor)

//make and invisible path first then we fill it in
context!.move(to: CGPoint(x: 50, y: 60))
context!.addLine(to: CGPoint(x: 250, y:320))
context!.strokePath()
}
}


Now make an instance on the view controller and add it to view. Check the below code for it.



import UIKit

class ViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.

let draw = DrawExample(frame: self.view.bounds)
view.addSubview(draw)
}
}





share|improve this answer

































    0














    Drawing in Swift 4.1



    let lastPoint = CGPoint.zero
    let red: CGFloat = 0.0
    let green: CGFloat = 0.0
    let blue: CGFloat = 0.0
    let brushWidth: CGFloat = 10.0
    let opacity: CGFloat = 1.0
    var isSwiping:Bool!
    override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    isSwiping = false
    if let touch = touches.first{
    lastPoint = touch.location(in: imgViewDraw)
    }
    }
    override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {

    isSwiping = true;
    if let touch = touches.first{
    let currentPoint = touch.location(in: imgViewDraw)
    UIGraphicsBeginImageContext(self.imgViewDraw.frame.size)
    self.imgViewDraw.image?.draw(in: CGRect(x:0, y:0,width:self.imgViewDraw.frame.size.width, height:self.imgViewDraw.frame.size.height))

    UIGraphicsGetCurrentContext()?.move(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
    UIGraphicsGetCurrentContext()?.addLine(to: CGPoint(x: currentPoint.x, y: currentPoint.y))

    UIGraphicsGetCurrentContext()?.setLineCap(CGLineCap.round)
    UIGraphicsGetCurrentContext()?.setLineWidth(self.brushWidth)
    UIGraphicsGetCurrentContext()?.setStrokeColor(red: red, green: green, blue: blue, alpha: 1.0)
    UIGraphicsGetCurrentContext()?.strokePath()


    self.imgViewDraw.image = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()
    lastPoint = currentPoint
    }
    }
    override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
    if(!isSwiping) {
    // This is a single touch, draw a point
    UIGraphicsBeginImageContext(self.imgViewDraw.frame.size)
    self.imgViewDraw.image?.draw(in: CGRect(x:0, y:0,width:self.imgViewDraw.frame.size.width, height:self.imgViewDraw.frame.size.height))
    UIGraphicsGetCurrentContext()?.setLineCap(CGLineCap.round)
    UIGraphicsGetCurrentContext()?.setLineWidth(self.brushWidth)

    UIGraphicsGetCurrentContext()?.move(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
    UIGraphicsGetCurrentContext()?.addLine(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
    UIGraphicsGetCurrentContext()?.setStrokeColor(red: red, green: green, blue: blue, alpha: 1.0)
    UIGraphicsGetCurrentContext()?.strokePath()
    self.imgViewDraw.image = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()
    }
    }





    share|improve this answer

























      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%2f45302524%2fdraw-lines-in-swift-3-0%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      2














      Update your class with below:



      import UIKit

      class DrawExample: UIView {

      override init(frame: CGRect) {
      super.init(frame: frame)
      }

      required init?(coder aDecoder: NSCoder) {
      fatalError("init(coder:) has not been implemented")
      }

      override func draw( _ rect: CGRect) {
      let context = UIGraphicsGetCurrentContext()
      context!.setLineWidth(3.0)
      context!.setStrokeColor(UIColor.purple.cgColor)

      //make and invisible path first then we fill it in
      context!.move(to: CGPoint(x: 50, y: 60))
      context!.addLine(to: CGPoint(x: 250, y:320))
      context!.strokePath()
      }
      }


      Now make an instance on the view controller and add it to view. Check the below code for it.



      import UIKit

      class ViewController: UIViewController {

      override func viewDidLoad() {
      super.viewDidLoad()
      // Do any additional setup after loading the view, typically from a nib.

      let draw = DrawExample(frame: self.view.bounds)
      view.addSubview(draw)
      }
      }





      share|improve this answer






























        2














        Update your class with below:



        import UIKit

        class DrawExample: UIView {

        override init(frame: CGRect) {
        super.init(frame: frame)
        }

        required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
        }

        override func draw( _ rect: CGRect) {
        let context = UIGraphicsGetCurrentContext()
        context!.setLineWidth(3.0)
        context!.setStrokeColor(UIColor.purple.cgColor)

        //make and invisible path first then we fill it in
        context!.move(to: CGPoint(x: 50, y: 60))
        context!.addLine(to: CGPoint(x: 250, y:320))
        context!.strokePath()
        }
        }


        Now make an instance on the view controller and add it to view. Check the below code for it.



        import UIKit

        class ViewController: UIViewController {

        override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.

        let draw = DrawExample(frame: self.view.bounds)
        view.addSubview(draw)
        }
        }





        share|improve this answer




























          2












          2








          2







          Update your class with below:



          import UIKit

          class DrawExample: UIView {

          override init(frame: CGRect) {
          super.init(frame: frame)
          }

          required init?(coder aDecoder: NSCoder) {
          fatalError("init(coder:) has not been implemented")
          }

          override func draw( _ rect: CGRect) {
          let context = UIGraphicsGetCurrentContext()
          context!.setLineWidth(3.0)
          context!.setStrokeColor(UIColor.purple.cgColor)

          //make and invisible path first then we fill it in
          context!.move(to: CGPoint(x: 50, y: 60))
          context!.addLine(to: CGPoint(x: 250, y:320))
          context!.strokePath()
          }
          }


          Now make an instance on the view controller and add it to view. Check the below code for it.



          import UIKit

          class ViewController: UIViewController {

          override func viewDidLoad() {
          super.viewDidLoad()
          // Do any additional setup after loading the view, typically from a nib.

          let draw = DrawExample(frame: self.view.bounds)
          view.addSubview(draw)
          }
          }





          share|improve this answer















          Update your class with below:



          import UIKit

          class DrawExample: UIView {

          override init(frame: CGRect) {
          super.init(frame: frame)
          }

          required init?(coder aDecoder: NSCoder) {
          fatalError("init(coder:) has not been implemented")
          }

          override func draw( _ rect: CGRect) {
          let context = UIGraphicsGetCurrentContext()
          context!.setLineWidth(3.0)
          context!.setStrokeColor(UIColor.purple.cgColor)

          //make and invisible path first then we fill it in
          context!.move(to: CGPoint(x: 50, y: 60))
          context!.addLine(to: CGPoint(x: 250, y:320))
          context!.strokePath()
          }
          }


          Now make an instance on the view controller and add it to view. Check the below code for it.



          import UIKit

          class ViewController: UIViewController {

          override func viewDidLoad() {
          super.viewDidLoad()
          // Do any additional setup after loading the view, typically from a nib.

          let draw = DrawExample(frame: self.view.bounds)
          view.addSubview(draw)
          }
          }






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jul 27 '18 at 23:56









          JaredH

          1,45711730




          1,45711730










          answered Jul 25 '17 at 12:02









          Parth AdrojaParth Adroja

          7,29942250




          7,29942250

























              0














              Drawing in Swift 4.1



              let lastPoint = CGPoint.zero
              let red: CGFloat = 0.0
              let green: CGFloat = 0.0
              let blue: CGFloat = 0.0
              let brushWidth: CGFloat = 10.0
              let opacity: CGFloat = 1.0
              var isSwiping:Bool!
              override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
              isSwiping = false
              if let touch = touches.first{
              lastPoint = touch.location(in: imgViewDraw)
              }
              }
              override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {

              isSwiping = true;
              if let touch = touches.first{
              let currentPoint = touch.location(in: imgViewDraw)
              UIGraphicsBeginImageContext(self.imgViewDraw.frame.size)
              self.imgViewDraw.image?.draw(in: CGRect(x:0, y:0,width:self.imgViewDraw.frame.size.width, height:self.imgViewDraw.frame.size.height))

              UIGraphicsGetCurrentContext()?.move(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
              UIGraphicsGetCurrentContext()?.addLine(to: CGPoint(x: currentPoint.x, y: currentPoint.y))

              UIGraphicsGetCurrentContext()?.setLineCap(CGLineCap.round)
              UIGraphicsGetCurrentContext()?.setLineWidth(self.brushWidth)
              UIGraphicsGetCurrentContext()?.setStrokeColor(red: red, green: green, blue: blue, alpha: 1.0)
              UIGraphicsGetCurrentContext()?.strokePath()


              self.imgViewDraw.image = UIGraphicsGetImageFromCurrentImageContext()
              UIGraphicsEndImageContext()
              lastPoint = currentPoint
              }
              }
              override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
              if(!isSwiping) {
              // This is a single touch, draw a point
              UIGraphicsBeginImageContext(self.imgViewDraw.frame.size)
              self.imgViewDraw.image?.draw(in: CGRect(x:0, y:0,width:self.imgViewDraw.frame.size.width, height:self.imgViewDraw.frame.size.height))
              UIGraphicsGetCurrentContext()?.setLineCap(CGLineCap.round)
              UIGraphicsGetCurrentContext()?.setLineWidth(self.brushWidth)

              UIGraphicsGetCurrentContext()?.move(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
              UIGraphicsGetCurrentContext()?.addLine(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
              UIGraphicsGetCurrentContext()?.setStrokeColor(red: red, green: green, blue: blue, alpha: 1.0)
              UIGraphicsGetCurrentContext()?.strokePath()
              self.imgViewDraw.image = UIGraphicsGetImageFromCurrentImageContext()
              UIGraphicsEndImageContext()
              }
              }





              share|improve this answer






























                0














                Drawing in Swift 4.1



                let lastPoint = CGPoint.zero
                let red: CGFloat = 0.0
                let green: CGFloat = 0.0
                let blue: CGFloat = 0.0
                let brushWidth: CGFloat = 10.0
                let opacity: CGFloat = 1.0
                var isSwiping:Bool!
                override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
                isSwiping = false
                if let touch = touches.first{
                lastPoint = touch.location(in: imgViewDraw)
                }
                }
                override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {

                isSwiping = true;
                if let touch = touches.first{
                let currentPoint = touch.location(in: imgViewDraw)
                UIGraphicsBeginImageContext(self.imgViewDraw.frame.size)
                self.imgViewDraw.image?.draw(in: CGRect(x:0, y:0,width:self.imgViewDraw.frame.size.width, height:self.imgViewDraw.frame.size.height))

                UIGraphicsGetCurrentContext()?.move(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
                UIGraphicsGetCurrentContext()?.addLine(to: CGPoint(x: currentPoint.x, y: currentPoint.y))

                UIGraphicsGetCurrentContext()?.setLineCap(CGLineCap.round)
                UIGraphicsGetCurrentContext()?.setLineWidth(self.brushWidth)
                UIGraphicsGetCurrentContext()?.setStrokeColor(red: red, green: green, blue: blue, alpha: 1.0)
                UIGraphicsGetCurrentContext()?.strokePath()


                self.imgViewDraw.image = UIGraphicsGetImageFromCurrentImageContext()
                UIGraphicsEndImageContext()
                lastPoint = currentPoint
                }
                }
                override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
                if(!isSwiping) {
                // This is a single touch, draw a point
                UIGraphicsBeginImageContext(self.imgViewDraw.frame.size)
                self.imgViewDraw.image?.draw(in: CGRect(x:0, y:0,width:self.imgViewDraw.frame.size.width, height:self.imgViewDraw.frame.size.height))
                UIGraphicsGetCurrentContext()?.setLineCap(CGLineCap.round)
                UIGraphicsGetCurrentContext()?.setLineWidth(self.brushWidth)

                UIGraphicsGetCurrentContext()?.move(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
                UIGraphicsGetCurrentContext()?.addLine(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
                UIGraphicsGetCurrentContext()?.setStrokeColor(red: red, green: green, blue: blue, alpha: 1.0)
                UIGraphicsGetCurrentContext()?.strokePath()
                self.imgViewDraw.image = UIGraphicsGetImageFromCurrentImageContext()
                UIGraphicsEndImageContext()
                }
                }





                share|improve this answer




























                  0












                  0








                  0







                  Drawing in Swift 4.1



                  let lastPoint = CGPoint.zero
                  let red: CGFloat = 0.0
                  let green: CGFloat = 0.0
                  let blue: CGFloat = 0.0
                  let brushWidth: CGFloat = 10.0
                  let opacity: CGFloat = 1.0
                  var isSwiping:Bool!
                  override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
                  isSwiping = false
                  if let touch = touches.first{
                  lastPoint = touch.location(in: imgViewDraw)
                  }
                  }
                  override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {

                  isSwiping = true;
                  if let touch = touches.first{
                  let currentPoint = touch.location(in: imgViewDraw)
                  UIGraphicsBeginImageContext(self.imgViewDraw.frame.size)
                  self.imgViewDraw.image?.draw(in: CGRect(x:0, y:0,width:self.imgViewDraw.frame.size.width, height:self.imgViewDraw.frame.size.height))

                  UIGraphicsGetCurrentContext()?.move(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
                  UIGraphicsGetCurrentContext()?.addLine(to: CGPoint(x: currentPoint.x, y: currentPoint.y))

                  UIGraphicsGetCurrentContext()?.setLineCap(CGLineCap.round)
                  UIGraphicsGetCurrentContext()?.setLineWidth(self.brushWidth)
                  UIGraphicsGetCurrentContext()?.setStrokeColor(red: red, green: green, blue: blue, alpha: 1.0)
                  UIGraphicsGetCurrentContext()?.strokePath()


                  self.imgViewDraw.image = UIGraphicsGetImageFromCurrentImageContext()
                  UIGraphicsEndImageContext()
                  lastPoint = currentPoint
                  }
                  }
                  override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
                  if(!isSwiping) {
                  // This is a single touch, draw a point
                  UIGraphicsBeginImageContext(self.imgViewDraw.frame.size)
                  self.imgViewDraw.image?.draw(in: CGRect(x:0, y:0,width:self.imgViewDraw.frame.size.width, height:self.imgViewDraw.frame.size.height))
                  UIGraphicsGetCurrentContext()?.setLineCap(CGLineCap.round)
                  UIGraphicsGetCurrentContext()?.setLineWidth(self.brushWidth)

                  UIGraphicsGetCurrentContext()?.move(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
                  UIGraphicsGetCurrentContext()?.addLine(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
                  UIGraphicsGetCurrentContext()?.setStrokeColor(red: red, green: green, blue: blue, alpha: 1.0)
                  UIGraphicsGetCurrentContext()?.strokePath()
                  self.imgViewDraw.image = UIGraphicsGetImageFromCurrentImageContext()
                  UIGraphicsEndImageContext()
                  }
                  }





                  share|improve this answer















                  Drawing in Swift 4.1



                  let lastPoint = CGPoint.zero
                  let red: CGFloat = 0.0
                  let green: CGFloat = 0.0
                  let blue: CGFloat = 0.0
                  let brushWidth: CGFloat = 10.0
                  let opacity: CGFloat = 1.0
                  var isSwiping:Bool!
                  override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
                  isSwiping = false
                  if let touch = touches.first{
                  lastPoint = touch.location(in: imgViewDraw)
                  }
                  }
                  override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {

                  isSwiping = true;
                  if let touch = touches.first{
                  let currentPoint = touch.location(in: imgViewDraw)
                  UIGraphicsBeginImageContext(self.imgViewDraw.frame.size)
                  self.imgViewDraw.image?.draw(in: CGRect(x:0, y:0,width:self.imgViewDraw.frame.size.width, height:self.imgViewDraw.frame.size.height))

                  UIGraphicsGetCurrentContext()?.move(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
                  UIGraphicsGetCurrentContext()?.addLine(to: CGPoint(x: currentPoint.x, y: currentPoint.y))

                  UIGraphicsGetCurrentContext()?.setLineCap(CGLineCap.round)
                  UIGraphicsGetCurrentContext()?.setLineWidth(self.brushWidth)
                  UIGraphicsGetCurrentContext()?.setStrokeColor(red: red, green: green, blue: blue, alpha: 1.0)
                  UIGraphicsGetCurrentContext()?.strokePath()


                  self.imgViewDraw.image = UIGraphicsGetImageFromCurrentImageContext()
                  UIGraphicsEndImageContext()
                  lastPoint = currentPoint
                  }
                  }
                  override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
                  if(!isSwiping) {
                  // This is a single touch, draw a point
                  UIGraphicsBeginImageContext(self.imgViewDraw.frame.size)
                  self.imgViewDraw.image?.draw(in: CGRect(x:0, y:0,width:self.imgViewDraw.frame.size.width, height:self.imgViewDraw.frame.size.height))
                  UIGraphicsGetCurrentContext()?.setLineCap(CGLineCap.round)
                  UIGraphicsGetCurrentContext()?.setLineWidth(self.brushWidth)

                  UIGraphicsGetCurrentContext()?.move(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
                  UIGraphicsGetCurrentContext()?.addLine(to: CGPoint(x: lastPoint.x, y: lastPoint.y))
                  UIGraphicsGetCurrentContext()?.setStrokeColor(red: red, green: green, blue: blue, alpha: 1.0)
                  UIGraphicsGetCurrentContext()?.strokePath()
                  self.imgViewDraw.image = UIGraphicsGetImageFromCurrentImageContext()
                  UIGraphicsEndImageContext()
                  }
                  }






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Nov 19 '18 at 10:20

























                  answered Oct 20 '18 at 10:39









                  Mahesh ChaudhariMahesh Chaudhari

                  13714




                  13714






























                      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%2f45302524%2fdraw-lines-in-swift-3-0%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

                      鏡平學校

                      ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

                      Why https connections are so slow when debugging (stepping over) in Java?