Yes, you can create icons using Core Graphics. Follow these simple 4 steps to draw a 3 bar button icon.
1) Add UIButtonto your storyboard and place it.

2) Create a Cocoa UIButton base class class name it as "NavButton" and paste the following code

import UIKit
class NavButton: UIButton {
override func drawRect(rect: CGRect) {
let lineThick:CGFloat = 1.0
let lineLenght:CGFloat = min(bounds.width, bounds.height) * 0.8
let lineColor: UIColor = UIColor.whiteColor()
let marginGap: CGFloat = 5.0
for line in 0...2 {
let linePath = UIBezierPath()
linePath.lineWidth = lineThick
linePath.moveToPoint(CGPoint(
x: bounds.width/2 - lineLenght/2,
y: 6.0 * CGFloat(line) + marginGap
))
linePath.addLineToPoint(CGPoint(
x: bounds.width/2 + lineLenght/2,
y: 6.0 * CGFloat(line) + marginGap
))
lineColor.setStroke()
linePath.stroke()
}
}
}
3) NavButton UIButton Identity Inspector > Custom Class > Class field

4) Attribute Inspector > Default Title ()

, ,
