はじめに
この記事はobjective-cで見た記事をswiftに書き直しただけで、しかも適当な自分用のメモです。(要は間違ってたりしても許して下さい。)
まずNSMutableArrayを用意
var buttons=NSMutableArray()
UIbutton作成のタイミングでNSMutableArrayに追加
tagも追加
for i in 1...10{
var tmp=UIButton(frame:CGRectMake(10,CGFloat(20*i+20),100,50))
tmp.setTitle(textArray[i].forState:UIControlState.Normal)
tmp.addTarget(self,action:"buttontupped",forControlEvents.TouchUpInside)
tmp.tag=i
addSubview(tmp)
buttons .addObject(tmp)