读书人

iPhone开发札记(六)

发布时间: 2012-09-05 15:19:34 作者: rapoo

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;

读书人网 >Iphone

热点推荐