摘要:
//高度可调且有一个显示更多的按钮-(void)viewDidLoad{ UITableView* table=[[UITableView alloc]initWithFrame:CGRectMake(0, 44, 320, 416)]; table.delegate=self; table.dat 阅读全文
摘要:
1.点击按钮触发allcountry事件:-(void)allcoutry{ //界面设计 picker_background=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)]; UIImageView *navigationItem=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"SchoolSearch_AllPleace_navBar.png"]]; navigationItem.frame=CGRectMake(0, 0, 320,.. 阅读全文
摘要:
非正式协议(interface),但其实质仍是调用正式协议(protocal) 正式协议(protocal)可以将业务中的方法定义剥离出来,形成一个单独的文件,这跟传统OO中的提取接口是不谋而合的。如果遇到二个系统需要交换数据,可以制定一套双方都遵守的protocal,然后这二个系统中都把这个协议文 阅读全文
摘要:
shoxuian 阅读全文
摘要:
拨打电话, 按钮触发toCall事件: // NSString *phone_temp_call=[phone_tempstringByReplacingOccurrencesOfString:@"-"withString:@""]; // NSLog(@"phone_temp_call is %@ 阅读全文
摘要:
新建一个继承NSObject的类ICMemoryHelper,.m文件的代码如下所示: 调用的时候只要:[ICMemoryHelper OutputMemory];就可以了 阅读全文
摘要:
NSLog可以如下面的方法使用: NSLog (@"this is a test"); NSLog (@"string is :%@", string); NSLog (@"x=%d, y=%d", 10, 20); 但是下面的写法是不行的: int i = 12345; NSLog( @"%@", 阅读全文