Enable Multi touch in Scene

I would like to enable multitouch in my game in order to move sprite with two fingers at the same time.
I already tried to use in didmovetoview():
self.view.multitouchenabled = true
and tried the game in the simulator of Xcode using the option key and it didnt work.
It isnt treating each touch at the same time seperately although i’m using in touches began and touches moved :
For touch in touches {
touchLocation = touches.locationInNode(Self)

}
Is there a tutorial regarding this subject updated to swift 2 and iOS 9 ?
Can Anyone clarify this issue ?