关键字 设置 的文章


由   YIem   撰写于    浏览:7682  评论:0
https://blog.ni-co.moe/ | 矢澤にこhttp://www.jianshu.com/p/515602a329c7 | iOS--《传值方法》之通知中心传值 - 简书http://www.jianshu.com/p/1ff9e44ccc78 | 多年iOS开发经验总结(一) - 简书http://www.cnblogs.com/[...]

由   YIem   撰写于    浏览:9720  评论:0
MAC 解决终端中 ls、cd、等等命令失效问题-原因错误修改~/.bash_profile文件在修改.bash_profile之后,终端输入命名出现-bash: ls: command not found 1>在命令行中输入export PATH=/usr/bin:/usr/sbin:/bin:/sbin:/usr/X11R6/bin这样可[...]

由   YIem   撰写于    浏览:10396  评论:0
如何导出Xshell中的服务器记录-密码-设置等等!1.选择文件-导出(如图)2.选择要保存的路径 (如图)3.选择导出-点击完成! (如图)4.然后会在桌面出现session.xts 文件 PS:你的保存路径在桌面

由   YIem   撰写于    浏览:7229  评论:0
如何导出FileZilla-FTP中的站点以及设置记录!1.选择文件-导出 (如图)2.选择要导出什么? 最好是全部!(如图)3.选择导出到桌面4.然后会在咱们看见 FileZilla.XML的文件

由   YIem   撰写于    浏览:5990  评论:0
关于iOS测试环境-- 怎么使用Mac搭建IPv6测试环境1>首先确保你的Mac是通过网线连接到网络的而不是WiFi, MacBook可以使用usb转换接口- 一个50左右!2>在系统偏好设置中找到共享,按住option键时点击共享,进入界面才会出现“创建NAT64网络”的勾选框(界面下方)详细教程 传送门

由   YIem   撰写于    浏览:5097  评论:0
// 设置Page的初始位置 self.scrollViewPage.currentPage = 1;

由   YIem   撰写于    浏览:3731  评论:0
// 加边框 self.buttonsoundImage.layer.borderWidth = 1; // 边框颜色 self.buttonsoundImage.layer.borderColor = [UIColor whiteColor].CGColor;

由   YIem   撰写于    浏览:3637  评论:0
iOS-添加到ScrollView上的东西 -Y坐标无法设置为0 ,设置为0不起作业-需要导航栏不透明-解决方法**// 原因是 系统回给ScrollView的头部预留69 用来显示 导航栏! 所以会出现这种状态 // 将ScrollView 的 automaticallyAdjustsScrollViewInsets 设置为NO 就可以了**[...]

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

由   YIem   撰写于    浏览:4448  评论:0
iOS-不规则瀑布流-瀑布流图片-

由   YIem   撰写于    浏览:4495  评论:0
iOS-集合视图-UIcollectionView

由   YIem   撰写于    浏览:5109  评论:0
iOS-判断当前网络状态-数据-无网络-WIFI-等等-第三方@第三方---UIKit+AFNetworking


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

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

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

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

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

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

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

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

由   YIem   撰写于    浏览:2971  评论:0
// 分区头名称(NSString )tableView:(UITableView )tableView titleForHeaderInSection:(NSInteger)section{return @"头头头";}// 分区脚部名称(NSString )tableView:(UITableView )tableView titleForFo[...]

由   YIem   撰写于    浏览:3248  评论:0
// 分割线样式tableV.separatorStyle = UITableViewCellSeparatorStyleSingleLine; // 分割线颜色 tableV.separatorColor = [UIColor greenColor]; // 行高 - 如果使用协议方法设置行高, 此句无效 tableV.rowHeight = 200;

由   YIem   撰写于    浏览:3180  评论:0
// 背景图片 [navigation.navigationBar setBackgroundImage:[UIImage imageNamed:@"10425.jpg"] forBarMetrics:UIBarMetricsDefault]; ![ // 背景图片[navigation.navigationBar set[...]

由   YIem   撰写于    浏览:3947  评论:0
/********UIPageControl 页码********/ UIPageControl *pcr = [[UIPageControl alloc] initWithFrame:CGRectMake(100, 500, 200, 50)]; // 注意属性 // 注意, 如果不设置页码个数 控件不显示 pcr.numberOfPages[...]