首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Iphone >

iPhone开发札记(六)

2012-09-05 
iPhone开发笔记(六)45、带参数通知的使用//新建通知? ? [[NSNotificationCenter defaultCenter] addObserve

iPhone开发笔记(六)

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;

热点排行