当前位置: 代码迷 >> Iphone >> iPhone开发札记(六)
  详细解决方案

iPhone开发札记(六)

热度:22   发布时间:2016-04-25 06:29:39.0
iPhone开发笔记(六)

41、将字符串分割成数组
temparray = [tempstring componentsSeparatedByString:@","];

?

?

42、可编辑表格
[self.tableView setEditing:TRUE];

43、表格划动行显示删除按钮
- (void)tableView:(UITableView *)tv commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
}

44、不带参数通知的使用
//新建通知
? ? [[NSNotificationCenter defaultCenter] addObserver: self
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?selector: @selector(newMsg)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?name: @"newmsg1"
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?? object: nil];
//通知调用的方法
- (void)newMsg{
}
//调用通知
? ? [[NSNotificationCenter defaultCenter] postNotificationName:@"newmsg" object:self];

45、带参数通知的使用
//新建通知
? ? [[NSNotificationCenter defaultCenter] addObserver: self
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?selector: @selector(newMsg:)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?name: @"newmsg1"
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?? object: nil];
//通知调用的方法
- (void)newMsg:(NSNotification *)note{
? ? NSLog(@"%@", [note userInfo]);
}
//调用通知
[[NSNotificationCenter defaultCenter] postNotificationName:@"newmsg1" object:nil userInfo:[NSDictionary dictionaryWithObject:@"succ" forKey:@"result"]];

46、自动调用键盘并置入焦点
[textview becomeFirstResponder];

47、关闭程序触发的时间
- (void) applicationWillTerminate:(UIApplication*)application{
? ? NSLog(@"关闭");
}

48、tabbar上面显示消息数量
viewController.tabBarItem.badgeValue = @"11";

49、UITextView圆角
#import <QuartzCore/QuartzCore.h>
[self.textview.layer setCornerRadius:8.5f];
textview.clipsToBounds = YES;

49、UITextView边框
#import <QuartzCore/QuartzCore.h>
[self.textview.layer setBorderColor:[[UIColor grayColor] CGColor]];
[self.textview.layer setBorderWidth:1.0];

50、TableCell右侧添加符号
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;

  相关解决方案