关键字 blue 的文章


由   YIem   撰写于    浏览:3593  评论:0
今年黑色星期五和网络星期一的服务器优惠真的没有什么亮点,所以把部分链接发一起了,LowEndTalk有更多,没时间去看了。当前列表中最低价年付10美元VirtonoThe best Web Hosting & Cloud VPS Black Friday deals are here.The discount coupon codes will w[...]

由   YIem   撰写于    浏览:5011  评论:0
改变UISearchBar输入框的颜色 UISearchBar *search = [[UISearchBar alloc] init]; if (_searchStr) { search.text = _searchStr; } [search setPlaceholder:@"输入人员名称[...]

由   YIem   撰写于    浏览:4370  评论:0
bluehost最新优惠活动,虚拟主机月付3美元起,bluehost VPS月付19美元起,bluehost服务器月付79美元起,bluehost优惠码bluehost付款方式:PayPal、信用卡bluehost 虚拟主机包含一个免费域名网站子域名SSD存储流量SSL证书性能IP备份价格购买链接1个25个50 GB无限量免费标准共享无$3.95/[...]

由   YIem   撰写于    浏览:5187  评论:0
iOS开发-Siwft创建UIView相关 let rect = CGRect(x: 10, y: 10, width: 200, height: 200) let myView = UIView(frame: rect) // 初始化并且返回具有指定矩形,新的视图对象 myView.backgrou[...]

由   YIem   撰写于    浏览:4951  评论:0
笑看西部数码没钱续费10万个域名系列2017年有近10万个.info/.red/.sex/.black/.blue/.pink/.kim/.pro/.pet/.bet/.mobi/.vc/.sc/.bz/.lc/.me/.org 通过我司注册,而此批域名近99%用作站群,续费率极低,因而近期有大量的域名已陆续进入删除期。 根据注册局相关域名规则,[...]

由   YIem   撰写于    浏览:4761  评论:0
今天在Google搜索-用关键词 "部落格" 搜索到的一些简体中文独立域名博客!可惜没有我!2016-11-11 重华部落格 ——http://hechonghua.com/格部落格 ——http://www.augsky.com/神奇宝贝部落格 ——https://52poke.com/zh-hans/刘哇勇的部落格 ——https://wayo[...]

由   YIem   撰写于    浏览:4618  评论:0
之前,应该是去年,博主也有一次联想的笔记本,某一天发现蓝牙居然不见了!(笔记本电脑本身有蓝牙)怎么弄都不好使!只能重新安装系统,从之前的8.1专业版 到现在的8.1企业版。奇葩的是今天听歌的时候蓝牙不见了(我每天都有用蓝牙的,用来连接小米的小钢炮蓝牙音响),然后没办法,要听歌,只能百度,但是百度也不是万能的,他不是淘宝,开个玩笑。 咱们开始!第一[...]

由   YIem   撰写于    浏览:3300  评论:0
iOS-UI-创建3个UISlider-分别设置划过区域的颜⾊分别为红,黄,蓝-通过控制三个slider改变self.view的背景颜⾊#import "ViewController.h"@interface ViewController ()@property (nonatomic, retain) UISlider *red;@property[...]

由   YIem   撰写于    浏览:3202  评论:0
#import "ViewController.h" @interface ViewController ()@property (nonatomic, retain) UILabel *label;@end@implementation ViewController(void)dealloc{[_label release];[...]

由   YIem   撰写于    浏览:3735  评论:0
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(50, 50, 300, 50)]; // 设置文字内容 label.text = @"YIem 的博客"; // 设置文字颜色 label.textColor = [UIColor greenColor]; /[...]

由   YIem   撰写于    浏览:3246  评论:0
iOS-UI-用for循环铺各色小方块for (CGFloat i = 0; i < 375; i+= 75) { for (CGFloat j = 0; j < 667; j+=83.375) { UIView *view = [[UIView alloc] initWithFrame:CGRectMake(i[...]

由   YIem   撰写于    浏览:3854  评论:0
// 随机颜色 view1.backgroundColor = [UIColor colorWithRed:arc4random() % 256 / 255.0 green:arc4random() % 256 / 255.0 blue:arc4random() % 256 / 255.0 alpha:1]; // 单独改变frame view[...]

由   YIem   撰写于    浏览:3884  评论:0
iOS-UI-View-实现七种颜色的--跑马灯效果-使用for循环铺view forin遍历颜色写在ViewController.m

由   YIem   撰写于    浏览:4094  评论:0
//// AppDelegate.h// UI13_Block传值//// Created by YIem on 15/12/23.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>@interface Ap[...]

由   YIem   撰写于    浏览:3923  评论:0
创建三个页⾯面,要求: 1.登陆页⾯面LoginViewController,可以输⼊入⽤用户名和密码, 导航栏右侧放置添加按钮,可以通过添加按钮模态到注册 页⾯面。 2.注册页⾯面RegisterViewController,填写⽤用户名,密码, 确认密码后注册。 3.欢迎页⾯面WelcomeViewController,由登陆页⾯面push得 [...]

由   YIem   撰写于    浏览:4551  评论:0
//**创建三个控制器 要求 :1.命名 First ~ Third。 2.分别设置背景颜⾊色红、灰、蓝。 3.如⽰示例完成⾃自定义导航栏。**//// AppDelegate.h// UI7_作业//// Created by YIem on 15/12/15.// Copyright (c) 2015年 www.yiem.net YIe[...]

由   YIem   撰写于    浏览:4973  评论:0
//// RootViewController.m// Phone//// Created by YIem on 15/12/12.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import "RootViewController.h"import "LT[...]

由   YIem   撰写于    浏览:6053  评论:0
//// RootViewController.m// UI5_UIControl//// Created by YIem on 15/12/11.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import "RootViewController.h"//[...]