I was using += to an a UIView to an array and that no longer seems to work. The line
dropsFound += hitView
Gives an error \'[(UIView)]\' is
adding object in array dropsFound += hitView,in this way, is removed in last release. You can add element in array by using this syntax dropsFound += [hitView] or dropsFound.append(hitView)