猫猫学iOS之ipad开发qq空间项目横竖屏幕适配

2024-09-05 07:32

本文主要是介绍猫猫学iOS之ipad开发qq空间项目横竖屏幕适配,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

猫猫分享,必须精品

原创文章,欢迎转载。转载请注明:翟乃玉的博客
地址:http://blog.csdn.net/u013357243

一:效果图

先看效果
这里写图片描述

二:结构图

如图所示:
这里写图片描述

其中用到了UIView+extension分类
Masonry第三方框架做子控制器的适配
NYHomeViewController对应主页也就是全部
NYDock是左边的菜单栏 放置各个选项卡等按钮功能区域
NYIconView头像
NYTabBar选项卡
NYToolBar最下面的功能区
NYTabBarButton自定义的tabbar按钮,为了让在横竖屏下面分别显示不同的样式

三:源码

NYHomeViewController

//
//  NYHomeViewController.m
//  QQ空间 横竖屏适配
//
//  Created by apple on 15/10/17.
//  Copyright (c) 2015年 apple. All rights reserved.
//#import "NYHomeViewController.h"
#import "NYDock.h"#import "NYConst.h"#import "Masonry.h"@interface NYHomeViewController ()
@property (nonatomic, weak) NYDock *dock;/***  正在显示的控制器*/
@property (nonatomic, weak) UIViewController *showingChildVc;
@end@implementation NYHomeViewController-(NYDock *)dock
{if (!_dock) {//创建dockNYDock *dock = [[NYDock alloc]init];[self.view addSubview:dock];self.dock = dock;}return _dock;
}- (void)viewDidLoad {[super viewDidLoad];//设置背景色self.view.backgroundColor = NYColor(55, 55, 55);//初始化子控制器[self setupChildVcs];//接受通知[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(tabBarDidSelect:) name:NYTabBarDidSelectNotification object:nil];//根据屏幕方向控制dock属性[self willAnimateRotationToInterfaceOrientation:self.interfaceOrientation duration:0];
}- (void)setupChildVcs
{for (int i = 0; i < 6; i++) {UIViewController *vc = [[UIViewController alloc]init];vc.view.backgroundColor = NYRandomColor;[self addChildViewController:vc];}//设置第一个为默认选中[self switchChildVc:0];
}/***  切换子控制器**  @param index 控制器索引*/
- (void)switchChildVc:(int)index
{//移除当前正在显示的子控制器[self.showingChildVc.view removeFromSuperview];//显示index对应的子控制器UIViewController *newChildVc = self.childViewControllers[index];[self.view addSubview:newChildVc.view];self.showingChildVc = newChildVc;// 添加约束[newChildVc.view mas_makeConstraints:^(MASConstraintMaker *make) {//        make.width.mas_equalTo(600);make.right.equalTo(self.view.mas_right);make.top.equalTo(self.view.mas_top);make.bottom.equalTo(self.view.mas_bottom);make.left.equalTo(self.dock.mas_right);}];}
- (void)tabBarDidSelect:(NSNotification *)notification
{int index = [notification.userInfo[NYTabBarDidSelectIndex] intValue];[self switchChildVc:index];
}-(void)dealloc
{[[NSNotificationCenter defaultCenter]removeObserver:self];
}/**当设备旋转时候调用*/
- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{if (UIInterfaceOrientationIsLandscape(toInterfaceOrientation)) {//横屏self.dock.width = NYDockLW;self.dock.height = NYScreenPW;}else{//竖屏self.dock.width = NYDockPW;self.dock.height = NYScreenLW;}
}//-(void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
//{
//    self.dock.width = size.width;
//    self.dock.height = size.height;
//}@end

Dock

//
//  NYDock.m
//  QQ空间 横竖屏适配
//
//  Created by apple on 15/10/17.
//  Copyright (c) 2015年 apple. All rights reserved.
//#import "NYDock.h"
#import "NYIconView.h"
#import "NYTabBar.h"
#import "NYToolBar.h"#import "NYConst.h"
@interface NYDock()
@property (nonatomic, weak) NYIconView *iconView;
@property (nonatomic, weak) NYTabBar *tabBarView;
@property (nonatomic, weak) NYToolBar *toolBarView;
@end@implementation NYDock-(instancetype)initWithFrame:(CGRect)frame
{if (self = [super initWithFrame:frame]) {//1.头像NYIconView *iconView = [[NYIconView alloc]init];[self addSubview:iconView];self.iconView = iconView;
//        iconView.backgroundColor = [UIColor grayColor];//2.tobBarNYTabBar *tabBarView = [[NYTabBar alloc]init];[self addSubview:tabBarView];self.tabBarView = tabBarView;
//        tabBarView.backgroundColor = [UIColor grayColor];//3.toolBarNYToolBar *toolBarView = [[NYToolBar alloc]init];[self addSubview:toolBarView];
//        toolBarView.backgroundColor = [UIColor grayColor];self.toolBarView = toolBarView;}return self;
}-(void)layoutSubviews
{[super layoutSubviews];self.toolBarView.width = self.width;self.tabBarView.width = self.width;self.tabBarView.height = NYDockPW * 6;if (Lanscape) {//横self.toolBarView.height = self.width / 3;self.toolBarView.y = self.height - self.toolBarView.height;self.tabBarView.y = self.toolBarView.y - self.tabBarView.height;//头像位置self.iconView.x = (self.width - self.iconView.width) * 0.5;self.iconView.y = self.iconView.x;self.iconView.width = self.width *0.4;self.iconView.height = self.iconView.width + 20;}else {//竖self.toolBarView.height = self.width * 3;self.toolBarView.y = self.height - self.toolBarView.height;self.tabBarView.y = self.toolBarView.y - self.tabBarView.height;//头像位置self.iconView.x = 5;self.iconView.y = 50;self.iconView.width = self.width - 5;self.iconView.height = self.iconView.width;}}@end

IconView

//
//  NYIconView.m
//  QQ空间 横竖屏适配
//
//  Created by apple on 15/10/18.
//  Copyright (c) 2015年 apple. All rights reserved.
//#import "NYIconView.h"#import "NYConst.h"
@implementation NYIconView
-(instancetype)initWithFrame:(CGRect)frame
{if (self = [super initWithFrame:frame]) {[self setImage:[UIImage imageNamed:@"cat"] forState:UIControlStateNormal    ];[self setTitle:@"znycat" forState:UIControlStateNormal];self.titleLabel.textAlignment = NSTextAlignmentCenter;self.imageView.layer.cornerRadius = 10;}return self;
}-(void)layoutSubviews
{[super layoutSubviews];if (Lanscape) {self.titleLabel.hidden = NO;self.imageView.width = self.width;self.imageView.height = self.width;self.imageView.y = 0;self.imageView.x = 0;self.titleLabel.width = self.width;self.titleLabel.height = self.height - self.width;self.titleLabel.y = self.width + 4;self.titleLabel.x = 0;}else{self.titleLabel.hidden = YES;self.imageView.bounds = self.bounds;}
}
@end

xtabBarView

//
//  NYTabBar.m
//  QQ空间 横竖屏适配
//
//  Created by apple on 15/10/18.
//  Copyright (c) 2015年 apple. All rights reserved.
//#import "NYTabBar.h"
#import "NYTabBarButton.h"@interface NYTabBar()
@property (nonatomic, weak) NYTabBarButton *selectedBtn;
@end@implementation NYTabBar-(id)initWithFrame:(CGRect)frame
{if (self = [super initWithFrame:frame]) {//创建按钮self.selectedBtn = [self setupButton:@"tabbar_photo"title:@"111"];self.selectedBtn.enabled = NO;[self setupButton:@"tabbar_mood"title:@"222"];[self setupButton:@"tabbar_blog"title:@"333"];[self setupButton:@"tabbar_photo"title:@"444"];[self setupButton:@"tabbar_mood"title:@"555"];[self setupButton:@"tabbar_blog"title:@"666"];}return self;
}/***  创建按钮*/
- (NYTabBarButton *) setupButton:(NSString *)icon title:(NSString *)title
{NYTabBarButton *button = [[NYTabBarButton alloc]init];[button setImage:[UIImage imageNamed:icon] forState:UIControlStateNormal];[button setTitle:title forState:UIControlStateNormal];[button addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchDown];
//    button.contentMode(image的是contentModel)对内容无用[self addSubview:button];return button;
}-(void)layoutSubviews
{[super layoutSubviews];int count = self.subviews.count;for (int i = 0 ; i<count; i++) {NYTabBarButton *btn = self.subviews[i];btn.height = self.height / count;btn.width = self.width ;btn.x = 0;btn.y = btn.height * i;btn.tag = i;if (Lanscape) {btn.contentEdgeInsets = UIEdgeInsetsMake(0, 30, 0, 0);}else{btn.contentEdgeInsets = UIEdgeInsetsMake(0, 15, 0, 0);}}}-(void)btnClick:(NYTabBarButton *)btn
{self.selectedBtn.enabled = YES;btn.enabled = NO;self.selectedBtn = btn;//发送通知[[NSNotificationCenter defaultCenter] postNotificationName:NYTabBarDidSelectNotification object:nil userInfo:@{NYTabBarDidSelectIndex:@(btn.tag)}];
}@end

TabBarButton

//
//  NYTabBarButton.m
//  QQ空间 横竖屏适配
//
//  Created by apple on 15/10/18.
//  Copyright (c) 2015年 apple. All rights reserved.
//#import "NYTabBarButton.h"@implementation NYTabBarButton-(instancetype)initWithFrame:(CGRect)frame
{if (self = [super initWithFrame:frame]) {[self setBackgroundImage:[UIImage imageNamed:@"tabbar_separate_selected_bg"] forState:UIControlStateDisabled];
//        让图片不要拉伸self.imageView.contentMode = UIViewContentModeCenter;//不能选中和高亮时候的灰色去掉self.adjustsImageWhenDisabled = NO;self.adjustsImageWhenHighlighted = NO;
//        //设置按钮的内容样式向左边对其
//        self.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
//        
//        //    切割间距内边距
//        self.contentEdgeInsets = UIEdgeInsetsMake(0, 30, 0, 0);
//        self.titleEdgeInsets = UIEdgeInsetsMake(0, 30, 0, 0);}return self;
}-(void)setHighlighted:(BOOL)highlighted{
}- (void)layoutSubviews
{[super layoutSubviews];if (Lanscape) {self.imageView.height = self.height;self.imageView.width = self.width * 0.4;self.imageView.x = 0;self.imageView.y = 0;self.titleLabel.hidden = NO;self.titleLabel.y = 0;self.titleLabel.x = self.imageView.width;self.titleLabel.width = self.width - self.imageView.width;self.titleLabel.height = self.height;} else {self.titleLabel.hidden = YES;// 如果设置宽度或者高度为0,某个控件还是会显示一部分, 可以尝试设置控件的width或者height为负数//        self.titleLabel.frame = CGRectMake(0, 0, -1, 0);self.imageView.frame = self.bounds;}
}@end

ToolBarView

//
//  NYToolBar.m
//  QQ空间 横竖屏适配
//
//  Created by apple on 15/10/18.
//  Copyright (c) 2015年 apple. All rights reserved.
//#import "NYToolBar.h"@implementation NYToolBar-(id)initWithFrame:(CGRect)frame
{if (self = [super initWithFrame:frame]) {//创建按钮[self setupButton:@"tabbar_photo"];[self setupButton:@"tabbar_mood"];[self setupButton:@"tabbar_blog"];}return self;
}/***  创建按钮*/
- (UIButton *) setupButton:(NSString *)icon
{UIButton *button = [[UIButton alloc]init];[button setImage:[UIImage imageNamed:icon] forState:UIControlStateNormal];[button setImage:[UIImage imageNamed:@"tabbar_separate_selected_bg"] forState:UIControlStateSelected];[self addSubview:button];return button;
}-(void)layoutSubviews
{[super layoutSubviews];int count = self.subviews.count;if (Lanscape) {for (int i = 0 ; i<count; i++) {UIButton *btn = self.subviews[i];btn.height = self.height;btn.width = self.width / count;btn.x = btn.width * i;btn.y = 0;}} else{for (int i = 0 ; i<count; i++) {UIButton *btn = self.subviews[i];btn.height = self.height / count;btn.width = self.width ;btn.x = 0;btn.y = btn.height * i;}}
}@end

这篇关于猫猫学iOS之ipad开发qq空间项目横竖屏幕适配的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1138330

相关文章

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

Hadoop企业开发案例调优场景

需求 (1)需求:从1G数据中,统计每个单词出现次数。服务器3台,每台配置4G内存,4核CPU,4线程。 (2)需求分析: 1G / 128m = 8个MapTask;1个ReduceTask;1个mrAppMaster 平均每个节点运行10个 / 3台 ≈ 3个任务(4    3    3) HDFS参数调优 (1)修改:hadoop-env.sh export HDFS_NAMENOD

如何用Docker运行Django项目

本章教程,介绍如何用Docker创建一个Django,并运行能够访问。 一、拉取镜像 这里我们使用python3.11版本的docker镜像 docker pull python:3.11 二、运行容器 这里我们将容器内部的8080端口,映射到宿主机的80端口上。 docker run -itd --name python311 -p

禁止平板,iPad长按弹出默认菜单事件

通过监控按下抬起时间差来禁止弹出事件,把以下代码写在要禁止的页面的页面加载事件里面即可     var date;document.addEventListener('touchstart', event => {date = new Date().getTime();});document.addEventListener('touchend', event => {if (new

嵌入式QT开发:构建高效智能的嵌入式系统

摘要: 本文深入探讨了嵌入式 QT 相关的各个方面。从 QT 框架的基础架构和核心概念出发,详细阐述了其在嵌入式环境中的优势与特点。文中分析了嵌入式 QT 的开发环境搭建过程,包括交叉编译工具链的配置等关键步骤。进一步探讨了嵌入式 QT 的界面设计与开发,涵盖了从基本控件的使用到复杂界面布局的构建。同时也深入研究了信号与槽机制在嵌入式系统中的应用,以及嵌入式 QT 与硬件设备的交互,包括输入输出设

OpenHarmony鸿蒙开发( Beta5.0)无感配网详解

1、简介 无感配网是指在设备联网过程中无需输入热点相关账号信息,即可快速实现设备配网,是一种兼顾高效性、可靠性和安全性的配网方式。 2、配网原理 2.1 通信原理 手机和智能设备之间的信息传递,利用特有的NAN协议实现。利用手机和智能设备之间的WiFi 感知订阅、发布能力,实现了数字管家应用和设备之间的发现。在完成设备间的认证和响应后,即可发送相关配网数据。同时还支持与常规Sof

活用c4d官方开发文档查询代码

当你问AI助手比如豆包,如何用python禁止掉xpresso标签时候,它会提示到 这时候要用到两个东西。https://developers.maxon.net/论坛搜索和开发文档 比如这里我就在官方找到正确的id描述 然后我就把参数标签换过来

安卓链接正常显示,ios#符被转义%23导致链接访问404

原因分析: url中含有特殊字符 中文未编码 都有可能导致URL转换失败,所以需要对url编码处理  如下: guard let allowUrl = webUrl.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else {return} 后面发现当url中有#号时,会被误伤转义为%23,导致链接无法访问

在cscode中通过maven创建java项目

在cscode中创建java项目 可以通过博客完成maven的导入 建立maven项目 使用快捷键 Ctrl + Shift + P 建立一个 Maven 项目 1 Ctrl + Shift + P 打开输入框2 输入 "> java create"3 选择 maven4 选择 No Archetype5 输入 域名6 输入项目名称7 建立一个文件目录存放项目,文件名一般为项目名8 确定

Linux_kernel驱动开发11

一、改回nfs方式挂载根文件系统         在产品将要上线之前,需要制作不同类型格式的根文件系统         在产品研发阶段,我们还是需要使用nfs的方式挂载根文件系统         优点:可以直接在上位机中修改文件系统内容,延长EMMC的寿命         【1】重启上位机nfs服务         sudo service nfs-kernel-server resta