Hey Friends, Today I will show you easiest way to create bar graphs in iOS by using a library created by me.
https://github.com/javedmultani16/JBar
JBar
Beautiful and easy bar graph for iOS
func permute(strInput:String,l:Int,r:Int){var inputCharacter = Array(strInput)if ( l==r){print(strInput)}else{for var i in l..<r{// Swapping doneinputCharacter.swapAt(l, i);// Recursion calledpermute(strInput: String(inputCharacter), l: l+1, r: r);…