关键字 1 的文章


由   YIem   撰写于    浏览:4123  评论:0

由   YIem   撰写于    浏览:3542  评论:0
在info的plist文件中添加下面代码(进入方法-info.plist-右键单击-Open AS->Source Code)<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> [...]

由   YIem   撰写于    浏览:3339  评论:0

由   YIem   撰写于    浏览:3959  评论:0

由   YIem   撰写于    浏览:2729  评论:0
// 解析数据 为n 第一种 解决方法(判断)if (![string hasPrefix:@"\n"]) { [stu setValue:string forKey:self.elementNameStr]; }//// 解析数据 为\n 第二种 解决方法(设置解析值(\n) 为空) self.elemen[...]

由   YIem   撰写于    浏览:3369  评论:0

由   YIem   撰写于    浏览:3868  评论:0

由   YIem   撰写于    浏览:2910  评论:0

由   YIem   撰写于    浏览:3749  评论:0

由   YIem   撰写于    浏览:4096  评论:0
// 标题视图 titleView// 创建要添加的视图对象

由   YIem   撰写于    浏览:3823  评论:0
2016-02-22- 服务器迁移成功,博客重新开通!之前 由于We Love Servers被Hostwinds,然后进行网站迁移,而春节因为是在老家的原因,没有网,也没有去重新开通!导致博客今天才开通!

由   YIem   撰写于    浏览:3695  评论:0
关于博客2016春节更新!2016-02-22过年是在老家的,那边没有网,而且比较忙,就无法继续更新了! 现在可以继续更新 !记录我,记录你,记录她!

由   YIem   撰写于    浏览:3783  评论:0
元宵节快乐!2016-02-22——21:13一个人过的元宵节!2016是一个新的开始,也希望我一直坚持的走下去!

由   YIem   撰写于    浏览:3181  评论:0
激动?开心? NO NO NO写代码吧,骚年!C语言试题.pages.pdfOC.pages.pdf

由   YIem   撰写于    浏览:3313  评论:0
**iOS-UI-UIButton 切圆-切弧度-边角弧度self.regButton.layer.cornerRadius = 10;**

由   YIem   撰写于    浏览:3640  评论:0
iOS-UI-UITabBarControllerDelegate-标签视图控制器@interface AppDelegate ()<UITabBarControllerDelegate> @end@implementation AppDelegate(void)dealloc{[_window release]; [super dea[...]

由   YIem   撰写于    浏览:2854  评论:0
快乐的时候听听轻音乐,悲伤的时候听听轻音乐, 最懂我的还是轻音乐!

由   YIem   撰写于    浏览:3133  评论:0
iOS-UI-UITableViewCell 的自定义-自适应高度RootVC.m

由   YIem   撰写于    浏览:4728  评论:0
[上部分 链接======][1]上部分链接-同上方链接TableView里面 1 2 3 一样#warning 移动 3 - 设置是否允许移动(BOOL)tableView:(UITableView )tableView canMoveRowAtIndexPath:(NSIndexPath )indexPath{return YES;}warni[...]

由   YIem   撰写于    浏览:2988  评论:0
import "RootViewController.h"import "Student.h"@interface RootViewController ()<UITableViewDataSource, UITableViewDelegate>@property (nonatomic, retain) NSMutableDiction[...]

由   YIem   撰写于    浏览:3109  评论:0
tableView整体刷新 重新执行所有协议方法 [_tableView reloadData]; 单行刷新// 参数1: 需要刷新的下标 // 参数2: 刷新动画 [_tableView reloadRowsAtIndexPaths:@[_index] withRowAnimation:UITableViewRowAnimationRight];

由   YIem   撰写于    浏览:3435  评论:0
// 辅助视图// cell.accessoryType = UITableViewCellAccessoryDetailButton;// 感叹号 // cell.accessoryType = UITableViewCellAccessoryCheckmark;// 对号 // cell.accessoryType = UITableV[...]

由   YIem   撰写于    浏览:2864  评论:0
// tableView结构 // tableHeaderView + tableView + tableFooterView // tableView -> section + row // section -> header + row + footer

由   YIem   撰写于    浏览:2917  评论:0
// tableView的头部脚部区域 // 头 (只有高度起作用) UIView *header = [[UIView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]; header.backgroundColor = [UIColor redColor]; tableView.tableH[...]

由   YIem   撰写于    浏览:3533  评论:0
// 设置 // indePath 定位信息 包含section和row cell.textLabel.text = [NSString stringWithFormat:@"s: %ld, r: %ld", indexPath.section, indexPath.row];