摘要:
tabSecond.separatorColor = [UIColor groupTableViewBackgroundColor]; 经验证,上面这种颜色属性再iphone5中不能正常显示。为了通用,建议使用 underPageBackgroundColor 这个色调和上面的差不多。 阅读全文
摘要:
设置 UITableView 边框 cell 边框 竖线需引入QuartzCore.framework, 并在相关文件中加入 #import "QuartzCore/QuartzCore.h" self.tableView.layer.borderWidth = 1;self.tableView.l... 阅读全文
摘要:
问题:两个tableview 在同一个页面时,出现自动合并的现象问题代码:-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ static NSString *cellIdetify = @"cell"; UITableViewCell *tvCell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentif... 阅读全文
摘要:
Xcode 中 如果不自动设置字体大小,则系统默认为17号 阅读全文
摘要:
UILabel 多行文字自动换行 (自动折行)1.UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(10, 100, 300, 180)]; 2. UILabel *label = [[UILabel alloc] ... 阅读全文
摘要:
在.h文件中声明了NSMutableArray变量,一定要记得在.m文件中写上[NSMutableArray alloc]init]; 对变量进行初始化。其它数组型变量亦同理。删除数组元素/* //删除数组元素NSMutableArray *tempArray=[[NSMutableArray alloc]initWithObjects:@"one",@"tow",@"threr",nil]; [tempArray removeObjectAtIndex:0];//从指定索引移除 [tempArray removeAllObjects 阅读全文
摘要:
//让单元格无法被选中-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ static NSString *cellIdetify = @"cell"; UITableViewCell *tvCell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdetify] autorelease]; 阅读全文
摘要:
//此处设定的大小是指scrollView的大小 scrView = [[UIScrollView alloc]initWithFrame:CGRectMake(0, 44, 320, 417)]; //核心:表示可滑动区域的大小 其实就是scrView中所有内容的总高度 ... 阅读全文
摘要:
在左侧选中项目名称,在右侧TARGETS中选择 Summary , 将Deployment Target 字段改成你本机能够支持的版本。例如此次我从网上下载的例子是基于6.0开发的,那么我将其改为5.0 。上述问题即消失。 阅读全文
摘要:
@protocol UIScrollViewDelegate几个概念的理解:contentSize:可滑动区域的大小 (即这个区域内的内容是可以滑动的!scrollview的frame 表示所有可滑动的内容,都在这个frame中进行滑动)例子: scrView = [[UIScrollView alloc]initWithFrame:CGRectMake(0, 44, 320, 417)]; [scrView setContentSize:CGSizeMake(320,(220+heightOfTabFirst+CELL_CONTENT_MARGIN+heightOfTabSecond+CEL 阅读全文