摘要: #import @interface UILabel (Create)/** * 创建普通Label * * @param frame frame * @param text text * @param font font * @p... 阅读全文
posted @ 2014-11-06 17:07 菜鸟程序猿 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 九宫格或者其他类型的坐标设置frame.size.width = 60;//设置按钮坐标及大小frame.size.height = 60;frame.origin.x = (i%3)*(60 + 32)+40;frame.origin.y = floor(i/3)*(60 + 24)+60; 阅读全文
posted @ 2014-11-06 16:29 菜鸟程序猿 阅读(365) 评论(0) 推荐(0) 编辑