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;
iOS开发与Swift编程技巧
本文深入探讨了iOS开发中的Swift编程语言,分享了实用的编程技巧和最佳实践,包括面向对象编程、函数式编程、错误处理、协程等高级特性,以及如何利用Swift构建高效、安全的应用程序。
1558

被折叠的 条评论
为什么被折叠?



