IOS第一个App应用源代码(ArtPage)

  1 #import "AppDelegate.h"
  2 #import "ViewController.h"
  3
  4 @interface AppDelegate ()
  5
  6 @end
  7
  8 @implementation AppDelegate
  9
 10 //程序启动完成调用
 11 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
 12     //系统创建window
 13     self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
 14     //在window上创建视图控制器
 15     self.window.rootViewController = [[ViewController alloc] init];
 16     //系统设置创建window的背景颜色
 17     self.window.backgroundColor = [UIColor blackColor];
 18     //设置为主窗口并显示出来
 19     [self.window makeKeyAndVisible];
 20
 21     return YES;
 22 }
 23
 24
 25
 26 #ifndef GlobalDefine_h
 27 #define GlobalDefine_h
 28
 29 #define SCREENWIDTH [[UIScreen mainScreen] bounds].size.width
 30 #define SCREENHEIGHT [[UIScreen mainScreen] bounds].size.height
 31
 32 #endif /* GlobalDefine_h */
 33
 34
 35
 36 #import <UIKit/UIKit.h>
 37
 38 @interface ViewController : UIViewController <UITextFieldDelegate>
 39
 40 @property (nonatomic, strong) UIImageView *imgViewHomePage;
 41 @property (nonatomic, strong) UIImageView *imgViewLine1;
 42 @property (nonatomic, strong) UIImageView *imgViewLine2;
 43 @property (nonatomic, strong) UIImageView *imgViewLogin;
 44 @property (nonatomic, strong) UIImageView *imgViewCancel;
 45
 46 @property (nonatomic, strong) UITextField *textFieldUserName;
 47 @property (nonatomic, strong) UITextField *textFieldPassword;
 48
 49 @property (nonatomic, strong) UIButton *buttonLogin;
 50 @property (nonatomic, strong) UIButton *buttonEmpty;
 51
 52 @end
 53
 54
 55
 56 #import "ViewController.h"
 57 #import "SecondViewController.h"
 58
 59 @interface ViewController ()
 60
 61 @end
 62
 63 @implementation ViewController
 64
 65 - (void)viewDidLoad {
 66     [super viewDidLoad];
 67     //设置主页面
 68     _imgViewHomePage = [[UIImageView alloc] initWithFrame:CGRectMake(89, 92, 143, 48)];
 69     _imgViewHomePage.image = [UIImage imageNamed:@"img_首页Logo"];
 70     [self.view addSubview:_imgViewHomePage];
 71
 72     //设置用户名线
 73     _imgViewLine1 = [[UIImageView alloc] initWithFrame:CGRectMake(45, 262, 230, 1)];
 74     _imgViewLine1.image = [UIImage imageNamed:@"img_首页输入框底线"];
 75     [self.view addSubview:_imgViewLine1];
 76
 77     //设置密码线
 78     _imgViewLine2 = [[UIImageView alloc] initWithFrame:CGRectMake(45, 311, 230, 1)];
 79     _imgViewLine2.image = [UIImage imageNamed:@"img_首页输入框底线"];
 80     [self.view addSubview:_imgViewLine2];
 81
 82     //设置登录imageView
 83     _imgViewLogin = [[UIImageView alloc] initWithFrame:CGRectMake(45, 323, 230, 47)];
 84     _imgViewLogin.image = [UIImage imageNamed:@"btn_登录_n"];
 85     [self.view addSubview:_imgViewLogin];
 86
 87     //设置取消imageView
 88     _imgViewCancel = [[UIImageView alloc] initWithFrame:CGRectMake(252, 240, 22, 22)];
 89     _imgViewCancel.image = [UIImage imageNamed:@"btn_首页用户名取消"];
 90     [self.view addSubview:_imgViewCancel];
 91
 92     //设置用户名TextField
 93     _textFieldUserName = [[UITextField alloc] initWithFrame:CGRectMake(45, 232, 230, 30)];
 94     //占位符
 95 //    _textFieldUserName.placeholder = @"用户名";
 96     //设置占位符上字体的颜色!!!
 97     _textFieldUserName.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"用户名" attributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor grayColor], NSForegroundColorAttributeName,nil]];//设置占位符上字体的颜色
 98     _textFieldUserName.textColor = [UIColor whiteColor];
 99     _textFieldUserName.delegate = self;//调用协议
100     [self.view addSubview:_textFieldUserName];
101
102     //设置密码TextField
103     _textFieldPassword = [[UITextField alloc] initWithFrame:CGRectMake(45, 281, 230, 30)];
104     NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:[UIColor grayColor], NSForegroundColorAttributeName,nil];
105     _textFieldPassword.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"密码" attributes:dic];
106     _textFieldPassword.textColor = [UIColor whiteColor];
107     //使用密文
108     _textFieldPassword.secureTextEntry = YES;
109     _textFieldPassword.delegate = self;
110     [self.view addSubview:_textFieldPassword];
111
112     //设置登录按钮
113     _buttonLogin = [UIButton buttonWithType:UIButtonTypeCustom];
114     _buttonLogin.frame = CGRectMake(45, 323, 230, 47);
115     [self.view addSubview:_buttonLogin];
116     //登录跳转
117     [_buttonLogin addTarget:self action:@selector(next:) forControlEvents:UIControlEventTouchUpInside];
118
119     //设置清空按钮
120     _buttonEmpty = [UIButton buttonWithType:UIButtonTypeCustom];
121     _buttonEmpty.frame = CGRectMake(252, 240, 22, 22);
122     [self.view addSubview:_buttonEmpty];
123     //清空用户名和密码:跳转
124     [_buttonEmpty addTarget:self action:@selector(empty:) forControlEvents:UIControlEventTouchUpInside];
125
126 }
127
128 //清空用户名的方法
129 -(void)empty:(id)sender
130 {
131     [_textFieldUserName setText:@""];
132     [_textFieldPassword setText:@""];
133     [_textFieldUserName isFirstResponder];
134 }
135
136 //登录跳转方法
137 - (void)next:(id)sender
138 {
139     NSString *strUserName = @"Huashan";
140     NSString *strPassWord = @"123456";
141     if ([_textFieldUserName.text isEqualToString:strUserName] && [_textFieldPassword.text isEqualToString:strPassWord])
142     {
143         //跳到下一个界面
144         SecondViewController *tempVC = [[SecondViewController alloc] init];
145         [self presentViewController:tempVC animated:YES completion:nil];
146     }
147     else
148     {
149         //跳出输入错误提示框
150         UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"警告" message:@"用户名或密码错误,请重新输入" preferredStyle:UIAlertControllerStyleAlert];
151         UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:nil];
152         [alertController addAction:okAction];
153         [self presentViewController:alertController animated:YES completion:nil];
154     }
155 }
156
157 - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
158 {
159     [_textFieldUserName resignFirstResponder];
160     [_textFieldPassword resignFirstResponder];
161 }
162
163 //点击文本框,界面随键盘出现,整体往上移动(关键词:UIView animate)
164 - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
165 {
166     if (self.view.frame.origin.y == 0)
167     {
168         [UIView animateWithDuration:0.3 animations:^{
169             self.view.frame = CGRectMake(self.view.frame.origin.x, self.view.frame.origin.y - 100, self.view.frame.size.width, self.view.frame.size.height);
170         }];
171     }
172     return YES;
173 }
174 //随着键盘收缩,界面随着往下移动
175 - (BOOL)textFieldShouldEndEditing:(UITextField *)textField
176 {
177
178     if (self.view.frame.origin.y == -100)
179     {
180         [UIView animateWithDuration:0.3 animations:^{
181             self.view.frame = CGRectMake(self.view.frame.origin.x, self.view.frame.origin.y + 100, self.view.frame.size.width, self.view.frame.size.height);
182         }];
183     }
184     return YES;
185 }
186
187
188 - (BOOL)textFieldShouldReturn:(UITextField *)textField//按下return键盘收缩
189 {
190     [textField resignFirstResponder];
191     return YES;
192 }
193
194 - (void)didReceiveMemoryWarning {
195     [super didReceiveMemoryWarning];
196     // Dispose of any resources that can be recreated.
197 }
198
199 @end
200
201
202
203 #import <UIKit/UIKit.h>
204
205 @interface SecondViewController : UIViewController
206
207 @property (nonatomic, strong) UIScrollView *scrollView;
208 @property (nonatomic, strong) UIImageView *imgView;
209 @property (nonatomic, strong) UILabel *sortLabel;
210 @property (nonatomic, strong) UIButton *backButton;
211
212 @end
213
214
215
216 #import "SecondViewController.h"
217 #import "GlobalDefine.h"
218
219 @interface SecondViewController ()
220
221 @end
222
223 @implementation SecondViewController
224
225 - (void)viewDidLoad
226 {
227     [super viewDidLoad];
228     //设置滚动视图
229     _scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, SCREENWIDTH, SCREENHEIGHT)];
230     //滚动视图内容的宽高
231     _scrollView.contentSize = CGSizeMake(SCREENWIDTH, SCREENHEIGHT * 4);
232     //启用分页
233     _scrollView.pagingEnabled = YES;
234     //禁止弹动
235     _scrollView.bounces = NO;
236     [self.view addSubview:_scrollView];
237
238     //添加4张图片,顺序上下
239     for (int i = 1; i < 5; ++i)
240     {
241         _sortLabel = [[UILabel alloc] initWithFrame:CGRectMake(SCREENWIDTH / 2 - 100, SCREENHEIGHT - 50, 200, 30)];
242         _sortLabel.textAlignment = NSTextAlignmentCenter;
243         _sortLabel.textColor = [UIColor whiteColor];
244         _sortLabel.font = [UIFont systemFontOfSize:15];
245
246         _imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, SCREENHEIGHT * (i - 1), SCREENWIDTH, SCREENHEIGHT)];
247         _imgView.image = [UIImage imageNamed:[NSString stringWithFormat:@"%d.jpg", i]];
248         _sortLabel.text = [NSString stringWithFormat:@"这是第%d张图片", i];
249         [_imgView addSubview:_sortLabel];
250         [_scrollView addSubview:_imgView];
251     }
252
253     //退出(返回)
254     _backButton = [UIButton buttonWithType:UIButtonTypeCustom];
255     _backButton.frame = CGRectMake(30, 50, 60, 60);
256     [_backButton setTitle:@"退出" forState:UIControlStateNormal];
257     [_backButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
258 //    _backButton.tintColor = [UIColor whiteColor];
259     _backButton.titleLabel.font = [UIFont systemFontOfSize:14];
260     [self.view addSubview:_backButton];
261
262     //退出跳转
263     [_backButton addTarget:self action:@selector(back:) forControlEvents:UIControlEventTouchUpInside];
264
265 }
266
267 - (void)back:(id)sender
268 {
269     [self dismissViewControllerAnimated:YES completion:nil];
270 }
271
272 - (void)didReceiveMemoryWarning {
273     [super didReceiveMemoryWarning];
274     // Dispose of any resources that can be recreated.
275 }
276
277 /*
278 #pragma mark - Navigation
279
280 // In a storyboard-based application, you will often want to do a little preparation before navigation
281 - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
282     // Get the new view controller using [segue destinationViewController].
283     // Pass the selected object to the new view controller.
284 }
285 */
286
287 @end
时间: 2024-09-29 11:23:55

IOS第一个App应用源代码(ArtPage)的相关文章

IOS从一个APP跳到另一个APP

以下为跳转到大众点评APP代码如下: NSString *requestUrlString = @"dianping://shopinfo?id=1000"; NSURL *requestUrl = [NSURL URLWithString: requestUrlString]; if([[UIApplication sharedApplication] canOpenURL:requestUrl]) { [[UIApplication sharedApplication] openU

ios 清除一个app的缓存

首先应该获取缓存路径,然后计算缓存的总大小,最后在利用for循环,逐个删除缓存文件夹里面的文件 下面附上完整的代码例子 //清除缓存按钮的点击事件 - (void)putBufferBtnClicked:(UIButton *)btn{ CGFloat size = [self folderSizeAtPath:NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).lastObject] +

ios 一个app启动另一个app

问题描述:需要从一个ios应用程序中,能启动另一个ios应用程序. 开发环境:xcode7.3.1 关键词:白名单(LSApplicationQueriesSchemes).注册自己的URL Demo源代码链接:http://pan.baidu.com/s/1bo327sb 如何从一个app中,启动另一个app???本人ios菜鸟(工作需要,刚开始自学ios,现学现卖,哈哈)参考网上若干文章,实现了这个功能.目前,将demo分享出来. 1.注册自己的URL 新建一个工程MyAppOne,在inf

iOS App 唤醒另一个App

网上也有讲这块的,感觉讲得都不是很好.而且有一些细节根本没有讲清楚.这里重写整理一下相关知识点. 主要内容 URL Scheme 是什么? 项目中关键的配置 注意事项 URL Scheme 是什么? iOS有个特性就是应用将其自身”绑定”到一个自定义 URL scheme 上,该 scheme用于从浏览器或其他应用中启动本应用.常见的分享到第三方之间的跳转都是基于Scheme的. 通过对比网页链接来理解iOS 上的 URL Schemes,应该就容易多了. URL,我们都很清楚,http://w

学习方法和阶段介绍 、 iOS界面开发引入 、 构造第一个App 、 视图控制器和视图 、 控件与事件 、 InterfaceBuilder

1 创建并运行第一个App 1.1 问题 使用Xcode创建一个App项目,该应用实现功能在界面上显示Hello World标签,在模拟器中的运行结果如图-1所示: 图-1 1.2 方案 分析图-1,首先使用Xcode创建一个Single ViewApplicaton应用,起名为MyFirstApp,如图-2所示: 图-2 然后删除Xcode的导航栏里只保留TRAppDelegate.h文件和TRAppDelageat.m文件,其他代码文件.storyboard文件以及xib文件删除,如图-3所

IOS APP唤醒另一个APP(app之间互相通信)

做各大平台分享的时候由于账号混乱,导致分享回调的时候启动了另一个app,这个时候我在猜想这些SDK是怎么唤醒没有启动的其他app的,不难想象,肯定跟AppDelegate处理回调openUrl有关,于是搜了一下才发现,一个应用程序可以唤醒另一个应用程序,只怪我菜,好啦,现在告诉不知道的朋友怎么来实现一个app怎么唤醒另一个app,以及让两个app之间互相通信... 测试工程操作如下 1.新建一个app1,在Info.plist文件的信息属性列表里新建一组,类型是URL types    设置如下

怎样退出App之前唤醒还有一个App?

郝萌主倾心贡献,尊重作者的劳动成果,请勿转载. 假设文章对您有所帮助,欢迎给作者捐赠,支持郝萌主,捐赠数额任意,重在心意^_^ 我要捐赠: 点击捐赠 Cocos2d-X源代码下载:点我传送 SDK并没有提供终止应用程序的方法. 要想终止应用程序,苹果推荐的唯一的方式是按下Homebutton. 可是Foundation框架中集成了Darwin框架,从而我们能够使用C函数exit(0)来终止Application. UIApplication的openUrl方法则是退出应用程序的还有一种方法. 当

如何开发一个App(Android)

前言 本篇博客从开发的角度来介绍如何开发一个Android App,需要说明一点是,这里只是提供一个如何开发一个app的思路,并不会介绍很多技术上的细节,从整个大局去把握如何去构思一个app的开发,让你对独立开发一款app的时候有个理解,如果有说的不对的地方,欢迎大家拍砖留言讨论. 开发环境 Android应用层使用的开发语言是Java,自然需要用到Java运行环境,无论你在Window是系统还是Mac系统都需要安装JDK,并且配置它的环境变量,不懂什么叫环境变量的或者不知道怎么配的,请利用好自

开发一个app项目需要多少钱?

开发一个app项目需要多少钱? .客户经常问“开发一个APP需要多少钱?”“做个app需要多少预算?”“开发个APP的价钱?”等等有关app开发价格方面.为此上海储君科技公司针对这一系列的问题做个整理: 现在的市面上有两种APP开发模式,一种是模板APP,一种是定制型开发的APP,两个分类价格也千差万别. 第一种,模板APP,它的市场价格几千到几万不等,相比APP定制开发价格是相当便宜的.但是也存在着一定的缺点.APP模板的源代码版权是APP 开发公司所有的,而且企业用户每年需要 交付一定的管理