[某鸥实训记][objective-c][第三天][个人笔记]

..还是粘的课上做的笔记

//WebView+Image Animation+Timer
//UIBarButton
    UIBarButtonItem *bar = [[UIBarButtonItem alloc] initWithBarButtonSystemItem: UIBarButtonSystemItemSearch target:self action:@selector(search:)];
    self.navigationItem.rightBarButtonItem = bar;
//    navigationItem中有一些项可以设置为自己定义的控件
//URL
    _webView.frame = self.view.frame;
    NSString *str = [NSString stringWithFormat:@"http://www.baidu.com"];
    NSURL *url = [NSURL URLWithString:str];
    NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url];
    [_webView loadRequest:request];

//    字符串,变为url,发送请求

//UIImageView播放动画
    _tomImageView = [[UIImageView alloc] init];
    _tomImageView.frame = self.view.frame;
    _tomImageView.image = [UIImage imageNamed:@"1.jpg"];

    NSMutableArray *arr = [[NSMutableArray alloc] initWithCapacity:10];
    for(int i = 0;i<26;i++){
        UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"cat_angry%04d.jpg",i]];
        [arr addObject:image];
    }
    _tomImageView.animationImages = arr;
    _tomImageView.animationRepeatCount = 1;
    _tomImageView.animationDuration = 2.6;
    [_tomImageView startAnimating];

//Timer
 self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(change) userInfo:nil repeats:YES];
时间: 2024-11-05 13:33:39

[某鸥实训记][objective-c][第三天][个人笔记]的相关文章

[某鸥实训记][objective-c][第五天][个人笔记]

TableView+ScrollView 往cell里加label 解决重影的办法 重用cell的时候删除元素 NSArray *subViews = cell.subviews; for (UIView *view in subViews) { [view removeFromSuperview]; } 在if(cell==nil)中去定义子视图,加上tag值.在外边通过tag值获取视图,修改值 封装一个自定义的cell类 //http://www.tuicool.com/articles/b

[某鸥实训记][objective-c][第四天][个人笔记]

老师上午请假了....然后因为有好多人之前的作业没写出来...所以安排写作业....然后我就划水了一上午.... 下午回来了...带着做了一遍那个打地鼠....... 所以,..今天没啥东西... TableViewController UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath]; 设置什么什么重用标识符 if(cell == n

[某鸥实训记][objective-c][第三天][作业]打地鼠X2

#import "ViewController.h" @interface ViewController () @property (nonatomic,strong) NSTimer *timer; @property (nonatomic,strong) NSTimer *mouseTimer; @property (nonatomic,strong) NSMutableArray *arr; @property (nonatomic,strong) NSMutableArray

[某鸥实训记][objective-c][第二天][作业]黑白棋+关灯游戏

自己写的..所以可能没什么逻辑性...可能特别水... 环境为ios SDK8.0 选择的Simulator是iPhone6 创建ios SingleViewApplication..然后再ViewController.m中的代码就是全部了 1 // 2 // ViewController.m 3 // 黑白棋0908 4 // 5 // Created by ******* on 15/9/8. 6 // Copyright (c) 2015年 *******. All rights rese

[某鸥实训记][objective-c][第二天][个人笔记]

今天学到了几种传值方式...直接粘在课上做的笔记了 不知道叫什么的用变量来传值 FirstViewController *firstVC = [[FirstViewController alloc] init]; firstVC.str = _textField.text; [self.navigationController pushViewController:firstVC animated:YES]; 单例传值 //SingleTon.m static SingleTon *ton =

[某鸥实训记][objective-c][第一天][个人笔记]

UIView,UILabel,UITextField,ViewController..... 然而上面这些都并没太搞懂...... 下面是学到的东西=w= //一边百度一边学的..所以很多东西都来自别的blog..后边会贴出出处 .frame :控件相对于父视图的位置 UITextField.borderStyle :UITextField的样式 .text :控件显示的文本 .backgroundColor :控件的背景颜色(然而设置了这个会让控件的某些属性无效) UIColor :一个颜色的

[某鸥实训记][objective-c][第六天][个人笔记]

- -..抓了个请求什么什么包的网址...然后发了个什么什么请求...   用了个叫paros的工具 ip设置成电脑的..设置下端口...然后把移动设备的HTTP代理设置成一样的就能抓了=w= 抓完了以后..又用了个什么什么包...往刚才抓的网址发了个请求..然后接收了一下Responce.. //PictureURLRequest.h #import <Foundation/Foundation.h> @protocol PictureURLRequestDelegate <NSObj

[某鸥实训记][objective-c][第七天][个人笔记]

在ScrollView里加子界面 ..直接上代码了 self.navigationController.navigationBar.translucent = NO; FirstTableViewController *firstVC = [[FirstTableViewController alloc] init]; SecondTableViewController *secondVC = [[SecondTableViewController alloc] init]; ThirdTabl

小项目实训:曹操外卖第三部分

UPDATE goods SET discount=8.5 WHERE cateld=3;UPDATE goods SET discount=7.5 WHERE cateld=6;/国庆期间外卖商品打折,所有外卖商品一律8.5折,特色小吃类外卖商品7.5折销售,据此在数据库中设置打折信息/UPDATE orders SET invoicecontent='已收货' WHERE prderno='20190220001';/Tom最近订购的一个订单编号为"20190220001",这个订