I have this code to get JSON:
Alamofire.request(.GET, worlds).responseJSON { (request, response, JSON, error) in println(JSON) //weakSelf.serverL
You can declare a weak self reference by putting [weak self] before your closure parameters.
[weak self]
You can see the documentation here