关键字 58 的文章


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

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

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

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

由   YIem   撰写于    浏览:3626  评论:0
iOS-数据库-FMDB-第三方-插入数据列表-(附件2-DataBaseHanfle.h-DataBaseHanfle.h-Student.h-Student.m) 第三方-点击下载-

由   YIem   撰写于    浏览:4547  评论:0
iOS-数据库-FMDB-第三方-插入数据列表-

由   YIem   撰写于    浏览:4280  评论:0
iOS-数据库-ViewController.m 调用- 数据库附件(1)

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

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

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

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

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

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

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

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

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

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

由   YIem   撰写于    浏览:3789  评论:0
/******* 假夜间模式 *********/ // 开关 UISwitch *sw = [[UISwitch alloc] initWithFrame:CGRectMake(100, 200, 100, 100)]; [sw addTarget:self action:@selector(swAction:) forControlEvents[...]

由   YIem   撰写于    浏览:3333  评论:0
VC.m#import "ActivityDetailViewController.h"import "ActivityDetailView.h"@interface ActivityDetailViewController ()@end@implementation ActivityDetailViewController

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

由   YIem   撰写于    浏览:5032  评论:0
main.m#import <Foundation/Foundation.h>import "System.h"import "Developer.h"int main(int argc, const char * argv[]) {// 协议代理// 模拟点击环境 Developer *dev = [[Developer alloc][...]

由   YIem   撰写于    浏览:3368  评论:0
main.m/* 实现图书管理系统: 1、使⽤数组管理所有书籍。 2、数组可以添加、删除。 3、可以从数组根据书名查找书籍,并修改书籍的价格。 4、展⽰所有书籍清单(书名)。*/ // 创建 对象Book *book1 = [Book bookWithBookName:@"YIem" price:20]; Book *b[...]

由   YIem   撰写于    浏览:3646  评论:0
/********* 方法2 简单类型对象的排序 ************/if 0// 创建排序对象 // 参数1 - 为简单类型对象可填写nil/@"self" // 为复杂类型对象可填写要进行排序的关键字, 如 按照Person的name成员排序 可填写@"name"; //参数2 [...]

由   YIem   撰写于    浏览:6586  评论:0
OC- 字典套数组 -- 省市区// 获取文件 NSString *str = [NSString stringWithContentsOfFile:@"area.txt" encoding:NSUTF8StringEncoding error:nil]; // 按\n截取 NSArray *line = [str compon[...]

由   YIem   撰写于    浏览:3079  评论:0
可变数组的各种操作// 可变数组 NSMutableArray *mArr = [NSMutableArray arrayWithObjects:@"aaa", @"bbb", @"ccc", @"ddd", @"eee", nil]; // 添加一[...]