摘要:
//保存用户名和密码-(void)saveAccountOrPwd{ NSMutableDictionary *recorder = [NSMutableDictionary dictionary]; [recorder setObject:loginName.text forKey:LOGIN_NAME]; NSMutableArray *array = [[NSMutableArray alloc]init]; //array = [NSMutableArray arrayWithContentsOfFile:LOGIN_RECORDEDFILE]; ... 阅读全文
摘要:
UIActivityIndicatorView *_aiView; //用来加载动画 UIButton *_clickMask; //button//加载动画-(void)loginAnimationActivityIndicatorView{ _clickMask = [UIButton buttonWithType:UIButtonTypeCustom]; [_clickMask setFrame:[UIScreen mainScreen].bounds]; [self.view addS... 阅读全文
摘要:
//设置选中的方式。一共有三种。cell.selectionStyle = UITableViewCellSelectionStyleNone;//三种效果typedef enum { UITableViewCellSelectionStyleNone, UITableViewCellSelectionStyleBlue, UITableViewCellSelectionStyleGray} UITableViewCellSelectionStyle;//选中后的字体颜色设置 cell.resultTableContent.highlightedTextColor = [UI... 阅读全文
摘要:
//用于向上偏移高度,也就是说隐藏tableView前面高度为50的区域。不让它显示。。[Tableview setContentInset:UIEdgeInsetsMake(-50, 0, 0, 0)]; 阅读全文
摘要:
//以前一直不知道多线程是个什么东西,为什么要用到线程。直到项目里遇到请求XML时。当数据加载或刷新时界面就会卡。也就是主线程堵塞。后来终于把这个问题给解决了。 //初始化 _operationQueue = [[NSOperationQueue alloc]init];//设置每秒请求一次 。在这里selector:@selector(threadTestN)后面注意如果threadTestN没有带冒号,表示这个方法不带参数。如果带上了冒号":"表示这个方法是有参数的 NSTimer *timer = [NSTimer scheduledTimerWithTimeInte 阅读全文
摘要:
xcode->preferences->text editing->display options->show line numbers 阅读全文
摘要:
//开始触发键盘-(BOOL)textViewShouldBeginEditing:(UITextView *)textView{ return YES;}//在触发键盘之前可以触发一些必要的事件。-(void)textViewDidBeginEditing:(UITextView *)textView{ NSLog(@"Begin");/* UIBarButtonItem *done = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self.. 阅读全文
摘要:
//设置tableViewcell里uilabel、图片高度 CGSize tbvContentSizeForheight = [cell.resultNoticeTableContent.text sizeWithFont:cell.resultNoticeTableContent.font]; CGSize tbvContentSizeForLines = [cell.resultNoticeTableContent.text sizeWithFont:cell.resultNoticeTableContent.font constrainedToSize:CGSizeMak... 阅读全文
摘要:
contentSize是scrollview可以滚动的区域,比如frame = (0 ,0 ,320 ,480) contentSize = (320 ,960),代表你的scrollview可以上下滚动,滚动区域为frame大小的两倍。contentOffset是scrollview当前显示区域顶点相对于frame顶点的偏移量,比如上个例子你拉到最下面,contentoffset就是(0 ,480),也就是y偏移了480contentInset是scrollview的contentview的顶点相对于scrollview的位置,例如你的contentInset = (0 ,100),那么你的 阅读全文
摘要:
今天突然遇到了一个这样的错误。Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<ContentViewController 0x4528a0> setValue:forUndefinedKey:]:this class is not key value coding-compliant for the key digitPressed弄了半天,代码也没有错误。后来还是找到了。是因为。当前的这个视图。View有一些控件有多余的关联。把它删除掉就行了。第一次 阅读全文