摘要: iPhone专用程序:图标名称大小圆角用途必需Icon.png57 X 5710px用于程序商店和在iPhone/iPod Touch中显示必需Icon@2x.png114 X 11420pxIcon.png的高清模式Icon-Small.png29 X 2920px用于设置和Spotlight搜索Icon-Small@2x.png58 X 588pxIcon-Small.png的高清模式ipad专用程序:图标名称大小圆角用途必需Icon-72.png72 X 7220px用于在iPad桌面中显示必需Icon-50.png50X 50?用于iPad中的Spotlight搜索Icon-29.pn 阅读全文
posted @ 2013-01-15 12:51 傲笑@红尘 阅读(511) 评论(0) 推荐(0)
摘要: tableview再删除cell的时候如果用到reloaddata方法的话会出现闪屏,他是重新加载tableview;如想动态删除我们可以用到 [shopCartTablebeginUpdates]; 1.删除要删除的cell在数据源中对应的数据; 2.将要删除的cell在tableview中的NSIndexPath的值加入数组;[numberRowOfCellArrayaddObject:[NSIndexPathindexPathForRow:0inSection:0]];3.将数组给- (void)deleteRowsAtIndexPaths:(NSArray *)indexPath... 阅读全文
posted @ 2012-12-31 14:45 傲笑@红尘 阅读(344) 评论(0) 推荐(0)
摘要: 作为一个菜鸟程序员,应该时常记录知识点并为其分类,让自己慢慢成长起来,所以在此做一些记录,也为后续的想学习的人参考。 1创建UIButton *btn=[[UIButton alloc] init] ;或者UIButton *btn = [UIButton buttonWithType:(UIButtonType)];2 UIButton的UIButtonTypeUIButtonTypeCustom = 0, //这个可以用来自定义按钮 UIButtonTypeRoundedRect, // 圆角按钮 UIButtonTypeDetailDisclosure, ... 阅读全文
posted @ 2012-12-31 13:42 傲笑@红尘 阅读(369) 评论(0) 推荐(0)