UI学习笔记(二)—— 深入了解导航控制

「OC」UI学习笔记(二)

文章目录

  • 「OC」UI学习笔记(二)
    • 手动布局子视图
    • 自动布局子视图
    • 导航控制器
      • 高级使用

手动布局子视图

//父视图的.h文件
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN@interface JCSuperView : UIView
{UIView *_v1;UIView *_v2;UIView *_v3;UIView *_v4;
}
-(void)makeView;
@endNS_ASSUME_NONNULL_END
—————————————————————————————————————————————————————————————————————————————————————————————————————————
//父视图.m文件内容
#import "JCSuperView.h"@implementation JCSuperView//布局父视图
-(void)makeView {//左上角_v1 = [[UIView alloc] init];_v1.frame = CGRectMake(0, 0, 40, 40);//右上角_v2 = [[UIView alloc] init];_v2.frame = CGRectMake(self.bounds.size.width - 40, 0, 40, 40);//右下角_v3 = [[UIView alloc] init];_v3.frame = CGRectMake(self.bounds.size.width - 40, self.bounds.size.height - 40, 40, 40);//左下角_v4 = [[UIView alloc] init];_v4.frame = CGRectMake(0, self.bounds.size.height - 40, 40, 40);_v1.backgroundColor = [UIColor redColor];_v2.backgroundColor = [UIColor redColor];_v3.backgroundColor = [UIColor redColor];_v4.backgroundColor = [UIColor redColor];[self addSubview:_v1];[self addSubview:_v2];[self addSubview:_v3];[self addSubview:_v4];}
//当需要重新布局时会调用此函数
-(void)layoutSubviews {[UIView beginAnimations:nil context:nil];[UIView setAnimationDuration:1];_v1.frame = CGRectMake(0, 0, 40, 40);_v2.frame = CGRectMake(self.bounds.size.width - 40, 0, 40, 40);_v3.frame = CGRectMake(self.bounds.size.width - 40, self.bounds.size.height - 40, 40, 40);_v4.frame = CGRectMake(0, self.bounds.size.height - 40, 40, 40);[UIView commitAnimations];
}@end
—————————————————————————————————————————————————————————————————————————————————————————————————————————
#import <UIKit/UIKit.h>
#import "ViewController.h"
#import "JCViewViewController.h"
#import "JCSuperView.h"@interface ViewController ()@end@implementation ViewController//在第一次加载被使用
- (void)viewDidLoad {[super viewDidLoad];[self makeSuper];
}-(void)makeSuper {JCSuperView *superview = [[JCSuperView alloc] initWithFrame:CGRectMake(20, 20, 200, 300)];[superview makeView];superview.backgroundColor = [UIColor greenColor];superview.tag = 101;UIButton *b1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];b1.frame = CGRectMake(300, 600, 80, 40);[b1 setTitle:@"放大" forState:UIControlStateNormal];[b1 addTarget:self action:@selector(beBig) forControlEvents:UIControlEventTouchUpInside];UIButton *b2 = [UIButton buttonWithType:UIButtonTypeRoundedRect];b2.frame = CGRectMake(300, 700, 80, 40);[b2 setTitle:@"缩小" forState:UIControlStateNormal];[b2 addTarget:self action:@selector(beSmall) forControlEvents:UIControlEventTouchUpInside];[self.view addSubview:superview];[self.view addSubview: b1];[self.view addSubview: b2];
}//事件放大功能
-(void)beBig {JCSuperView *sview = (JCSuperView*)[self.view viewWithTag:101];[UIView beginAnimations:nil context:nil];[UIView setAnimationDuration:1];sview.frame = CGRectMake(50, 50, 300, 400);[UIView commitAnimations];
}//实现缩小功能
-(void)beSmall {JCSuperView *sview = (JCSuperView*)[self.view viewWithTag:101];[UIView beginAnimations:nil context:nil];[UIView setAnimationDuration:1];sview.frame = CGRectMake(50, 50, 200, 300);[UIView commitAnimations];
}

自动布局子视图

-(void)makeAutoView {_sview = [[UIView alloc] initWithFrame:CGRectMake(20, 20, 180, 280)];_sview.backgroundColor = [UIColor blueColor];_v1 = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];_v1.backgroundColor = [UIColor redColor];_v1.text = @"1";_v2 = [[UILabel alloc] initWithFrame:CGRectMake(140, 0, 40, 40)];_v2.backgroundColor = [UIColor redColor];_v2.text = @"2";_v3 = [[UILabel alloc] initWithFrame:CGRectMake(140, 240, 40, 40)];_v3.backgroundColor = [UIColor redColor];_v3.text = @"3";_v4 = [[UILabel alloc] initWithFrame:CGRectMake(0, 240, 40, 40)];_v4.backgroundColor = [UIColor redColor];_v4.text = @"4";[_sview addSubview:_v1];[_sview addSubview:_v2];[_sview addSubview:_v3];[_sview addSubview:_v4];[self.view addSubview:_sview];_center = [[UIView alloc]initWithFrame:CGRectMake(0, 0, _sview.bounds.size.width, 40)];_center.center = CGPointMake(90, 140);_center.backgroundColor = [UIColor redColor];[_sview addSubview:_center];//自动布局属性,设置子视图和父视图的相对关系_center.autoresizingMask = UIViewAutoresizingFlexibleWidth| UIViewAutoresizingFlexibleTopMargin| UIViewAutoresizingFlexibleBottomMargin;//设置左边为可变距离_v2.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin;_v3.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin;_v4.autoresizingMask = UIViewAutoresizingFlexibleTopMargin;
}- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {static BOOL flag = NO;[UIView beginAnimations:nil context:nil];[UIView setAnimationDuration:1];if (flag == NO) {_sview.frame = CGRectMake(20, 20, 360, 480);flag = YES;} else {_sview.frame = CGRectMake(20, 20, 180, 280);flag = NO;}[UIView commitAnimations];
}

在iOS13.0版本中beginAnimationscommitAnimations方法已经被废弃,不推荐在新的iOS开发中使用。现在的iOS开发更常用的是使用UIView的动画块(animateWithDuration:animations:)或UIViewPropertyAnimator等更高级的API来实现动画效果。这些新的API提供了更灵活、更强大的动画控制能力,并提供了更好的性能和可读性。

以下是对上面程序使用animateWithDuration:animations:进行改写

-(void)makeAutoView {_sview = [[UIView alloc] initWithFrame:CGRectMake(20, 20, 180, 280)];_sview.backgroundColor = [UIColor blueColor];_v1 = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];_v1.backgroundColor = [UIColor redColor];_v1.text = @"1";_v2 = [[UILabel alloc] initWithFrame:CGRectMake(140, 0, 40, 40)];_v2.backgroundColor = [UIColor redColor];_v2.text = @"2";_v3 = [[UILabel alloc] initWithFrame:CGRectMake(140, 240, 40, 40)];_v3.backgroundColor = [UIColor redColor];_v3.text = @"3";_v4 = [[UILabel alloc] initWithFrame:CGRectMake(0, 240, 40, 40)];_v4.backgroundColor = [UIColor redColor];_v4.text = @"4";[_sview addSubview:_v1];[_sview addSubview:_v2];[_sview addSubview:_v3];[_sview addSubview:_v4];[self.view addSubview:_sview];_center = [[UIView alloc]initWithFrame:CGRectMake(0, 0, _sview.bounds.size.width, 40)];_center.center = CGPointMake(90, 140);_center.backgroundColor = [UIColor redColor];[_sview addSubview:_center];//自动布局属性,设置子视图和父视图的相对关系_center.autoresizingMask = UIViewAutoresizingFlexibleWidth| UIViewAutoresizingFlexibleTopMargin| UIViewAutoresizingFlexibleBottomMargin;//设置左边为可变距离_v2.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin;_v3.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin;_v4.autoresizingMask = UIViewAutoresizingFlexibleTopMargin;
}- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {static BOOL flag = NO;//参数一:动画时长//参数二:代码块实现功能[UIView animateWithDuration:1 animations:^{if (flag == NO) {self->_sview.frame = CGRectMake(20, 20, 360, 480);flag = YES;} else {self->_sview.frame = CGRectMake(20, 20, 180, 280);flag = NO;}}];
}

导航控制器

//SceneDelegate.m
#import "SceneDelegate.h"
#import "ViewController.h"
#import "JCRootViewController.h"
@interface SceneDelegate ()@end@implementation SceneDelegate- (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions {self.window.frame = [UIScreen mainScreen].bounds;//创建视图控制器JCRootViewController *root = [[JCRootViewController alloc] init];//创建导航控制器——主要用于管理多个视图控制器的切换//在创建控制器,一定要有一个根视图控制器//参数一:就是作为导航控制器的根视图控制器UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:root];//将根视图设置为导航控制器self.window.rootViewController = nav;[self.window makeKeyAndVisible];}- (void)sceneDidDisconnect:(UIScene *)scene {// Called as the scene is being released by the system.// This occurs shortly after the scene enters the background, or when its session is discarded.// Release any resources associated with this scene that can be re-created the next time the scene connects.// The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead).
}- (void)sceneDidBecomeActive:(UIScene *)scene {// Called when the scene has moved from an inactive state to an active state.// Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive.
}- (void)sceneWillResignActive:(UIScene *)scene {// Called when the scene will move from an active state to an inactive state.// This may occur due to temporary interruptions (ex. an incoming phone call).
}- (void)sceneWillEnterForeground:(UIScene *)scene {// Called as the scene transitions from the background to the foreground.// Use this method to undo the changes made on entering the background.
}- (void)sceneDidEnterBackground:(UIScene *)scene {// Called as the scene transitions from the foreground to the background.// Use this method to save data, release shared resources, and store enough scene-specific state information// to restore the scene back to its current state.
}@end
—————————————————————————————————————————————————————————————————————————————————————————————————————————
//创建一个新的controller的子类,作为新的主根视图
#import"JCRootViewController.h"@interface JCRootViewController ()@end@implementation JCRootViewController- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view.self.view.backgroundColor = [UIColor yellowColor];//设置导航栏文字self.title = @"根视图";//设置导航元素项目标题self.navigationItem.title = @"Title";//优先使用title为标题//只能指定风格样式,系统风格的按钮内容或者标题字体不能改变UIBarButtonItem *left = [[UIBarButtonItem alloc] initWithTitle:@"回退" style:UIBarButtonItemStyleDone target:self action:@selector(pressLeft)];//向导航栏左侧的按钮进行赋值self.navigationItem.leftBarButtonItem = left;UIBarButtonItem *right = [[UIBarButtonItem alloc] initWithTitle:@"详情" style:UIBarButtonItemStylePlain target:self action:@selector(pressRight)];//向导航栏右侧的按钮进行赋值self.navigationItem.rightBarButtonItem = right;//添加多个按钮,将多个控件添加至导航栏右侧之中UILabel *l = [[UILabel alloc] init];l.text = @"test";l.textAlignment = NSTextAlignmentCenter;UIBarButtonItem *btn = [[UIBarButtonItem alloc] initWithCustomView:l];NSArray *arr = [NSArray arrayWithObjects:btn, right, nil];self.navigationItem.rightBarButtonItems = arr;
}-(void)pressLeft {NSLog(@"回退键被点击");
}
-(void)pressRight {NSLog(@"详情键被点击");
}
/*
#pragma mark - Navigation// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {// Get the new view controller using [segue destinationViewController].// Pass the selected object to the new view controller.
}
*/@end

高级使用

//SceneDelegate.m
#import "SceneDelegate.h"
#import "FirstViewController.h"
#import "SecondViewController.h"
#import "ThirdViewController.h"
#import "fourthViewController.h"
#import "fifthViewController.h"
#import "sixthViewController.h"
@interface SceneDelegate ()@end@implementation SceneDelegate- (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions {_window.frame = [UIScreen mainScreen].bounds;// 创建视图控制器FirstViewController *v1 = [[FirstViewController alloc] init];SecondViewController *v2 = [[SecondViewController alloc] init];ThirdViewController *v3 = [[ThirdViewController alloc] init];fourthViewController *v4 = [[fourthViewController alloc] init];fifthViewController *v5 = [[fifthViewController alloc] init];sixthViewController *v6 = [[sixthViewController alloc] init];// 创建 UITabBarController 并设置视图控制器数组UITabBarController *tabBarController = [[UITabBarController alloc] init];//通过edit修改会修改数组之中元素的顺序tabBarController.viewControllers = @[v1, v2, v3, v4, v5, v6];// 设置每个选项卡的标题v1.title = @"Tab 1";v2.title = @"Tab 2";v3.title = @"Tab 3";v4.title = @"Tab 4";v5.title = @"Tab 5";v6.title = @"Tab 6";// 将每个视图控制器设置不同的背景颜色v1.view.backgroundColor = [UIColor redColor];v2.view.backgroundColor = [UIColor blueColor];v3.view.backgroundColor = [UIColor greenColor];v4.view.backgroundColor = [UIColor yellowColor];v5.view.backgroundColor = [UIColor purpleColor];v6.view.backgroundColor = [UIColor orangeColor];//导航栏颜色tabBarController.tabBar.barTintColor = [UIColor whiteColor];//改变按钮风格颜色tabBarController.tabBar.tintColor = [UIColor blackColor];// 将导航控制器设置为根视图控制器_window.rootViewController = tabBarController;//设置代理tabBarController.delegate = self;[_window makeKeyAndVisible];
}//即将开始编辑时调用
-(void)tabBarController:(UITabBarController *)tabBarController willBeginCustomizingViewControllers:(NSArray<__kindof UIViewController *> *)viewControllers {NSLog(@"编辑之前");
}//即将结束编辑之时
-(void)tabBarController:(UITabBarController *)tabBarController willEndCustomizingViewControllers:(NSArray<__kindof UIViewController *> *)viewControllers changed:(BOOL)changed {NSLog(@"即将结束");
}-(void)tabBarController:(UITabBarController *)tabBarController didEndCustomizingViewControllers:(NSArray<__kindof UIViewController *> *)viewControllers changed:(BOOL)changed {NSLog(@"已经结束编辑");
}-(void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {NSLog(@"选中后控制器对象 —— %lu",(unsigned long)tabBarController.selectedIndex);
}- (void)sceneDidDisconnect:(UIScene *)scene {// Called as the scene is being released by the system.// This occurs shortly after the scene enters the background, or when its session is discarded.// Release any resources associated with this scene that can be re-created the next time the scene connects.// The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead).
}- (void)sceneDidBecomeActive:(UIScene *)scene {// Called when the scene has moved from an inactive state to an active state.// Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive.
}- (void)sceneWillResignActive:(UIScene *)scene {// Called when the scene will move from an active state to an inactive state.// This may occur due to temporary interruptions (ex. an incoming phone call).
}- (void)sceneWillEnterForeground:(UIScene *)scene {// Called as the scene transitions from the background to the foreground.// Use this method to undo the changes made on entering the background.
}- (void)sceneDidEnterBackground:(UIScene *)scene {// Called as the scene transitions from the foreground to the background.// Use this method to save data, release shared resources, and store enough scene-specific state information// to restore the scene back to its current state.
}@end

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/18385.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【最新区块链论文录用资讯】CCF A—INFOCOM 2024 共17篇

Conference&#xff1a;IEEE International Conference on Computer Communications CCF level&#xff1a;CCF A Categories&#xff1a;计算机网络 Year&#xff1a;2024 Num&#xff1a;17 A Generic Blockchain-based Steganography Framework with High Capacity via …

Python: 使用pyotp实现OTP一次性密码验证

使用pyotp实现OTP一次性密码验证 OTP的基本原理 生成一个共享秘钥作为随机数的种子服务端通过种子计算出当前的密码客户端也通过相同的种子计算出当前的密码验证客户端生成的密码和服务端生成的密码是否匹配 服务端和客户端计算的方式一样 共享密钥 时间因子 算法 > 密…

多个文本如何一键导出二维码?在线批量生码的制作方法

当存在多条文本数据并且需要将每条数据生成单独的二维码来使用&#xff0c;很多小伙伴可能还在用一个一个来制作的方法&#xff0c;在二维码生成器上将文本转二维码。这种方式操作起来比较的繁琐&#xff0c;需要浪费大量的时间&#xff0c;那么有什么方法可以简化这个过程吗&a…

【Android-Compose】ViewModel 的 init 初始化函数中使用非主线程上的协程闪退问题

问题&#xff1a; 在 Compose- kotlin 中&#xff0c;如果在 ViewModel 中的 init 函数中使用非主线程上的协程会导致闪退问题&#xff0c; 具体代码为&#xff1a; HiltViewModel class ApkScreenViewModel Inject constructor(... ) : ViewModel() {// 1. 在非 主线程的协程…

#学习方法#笔记#微信

飞鸟写作是一个非常好用、靠谱且方便的论文写作工具&#xff0c;可以帮助用户高效地完成论文写作任务。无论是学生还是研究人员&#xff0c;使用飞鸟写作都能极大地提升写作效率和质量。 首先&#xff0c;飞鸟写作具有强大的查重降重功能&#xff0c;能够帮助用户快速检测论文…

【数据库】数据库学习(MySQL,Oracle,PostgreSql)

数据库语句学习 摘要&#xff1a;文章主要内容是数据库语句的基本操作&#xff0c;以及一些基本的数据库标准库函数 重点&#xff1a;SQL语句对大小写不敏感 数据库操作语句 SELECT - 从数据库表中获取数据UPDATE - 更新数据库表中的数据DELETE - 从数据库表中删除数据INSERT …

OSPF的扩展配置

1、认证——直连的邻居或邻接关系间,进行认证配置后,5种数据包中均携带身份核实的密码&#xff0c;且华为设备会对更新信息进行加密--前提为认证方式选择密文认证 1)接口认证 [r1-GigabitEthernet0/0/1ospf authentication-mode md5 1 cipher 123456 直连的邻居间秘钥和编号、模…

行列视(RCV)能否同时支持多个实时数据库?

行列视&#xff08;RCV&#xff09;生产数据应用系统在设计时考虑到了多数据源的需求&#xff0c;因此它支持同时连接多个实时数据库。这意味着用户可以轻松地将来自不同实时数据库的数据整合到行列视&#xff08;RCV&#xff09;系统中&#xff0c;实现数据的集中管理和分析。…

Android14 WMS-窗口添加流程(二)-Server端

上一篇文章讲到了Client端窗口添加流程&#xff0c;本文接着上文往下讲&#xff0c;讲一下Server端的窗口添加流程。 1. WindowManagerService#grantInputChannel 由grantInputChannel我们可以看到&#xff0c;Client端传入了session对象&#xff0c; 发起者Uid-callingUid&am…

X.509数字证书

在国密标准文件《GMT 0015-2012 基于SM2密码算法的数字证书格式》里有对X.509数字证书格式的详细描述。 数字证书的定义 由国家认可的&#xff0c;具有权威性、可信性和公正性的第三方证书认证机构&#xff08;CA&#xff09;进行数字签名的一个可信的数字化文件。 数字证书…

YOLOv10代码详细介绍(附录训练教程和权重)

前言 YOLOv10 是清华大学研究人员在 UltralyticsPython 清华大学的研究人员在 YOLOv10软件包的基础上&#xff0c;引入了一种新的实时目标检测方法&#xff0c;解决了YOLO 以前版本在后处理和模型架构方面的不足。通过消除非最大抑制&#xff08;NMS&#xff09;和优化各种模型…

【几何角度】感知机

本质&#xff1a;将n维空间中的一些点线性投影到一维&#xff0c;在一维轴上找一个阈值对这些点进行二分类。 程序&#xff1a; import numpy as npclass Perceptron:def __init__(self, learning_rate0.01, n_iterations1000):self.learning_rate learning_rateself.n_itera…

【Python基础】一文搞懂:Python 中 “requirements.txt“ 文件生成和使用

文章目录 1 引言2 什么是 requirements.txt&#xff1f;3 如何生成 requirements.txt&#xff1f;3.1 方法一&#xff1a;使用 pip freeze3.2 方法二&#xff1a;使用 pipreqs 3.3 使用 pip freeze 和 pipreqs 的对比4 如何使用 requirements.txt&#xff1f;4.1 安装依赖4.2 更…

[从零开发JS应用] 如何在VScode中配置Javascript环境,常见的调试方法有哪些?

一、安装VSCode和Node.js 记录环境配置&#xff1a;本文配置的环境主要针对单独JS文件的断点调试&#xff0c;主要是为了调试LeetCode里面的代码。 首先在官网下载对应的版本&#xff1a;https://nodejs.org/en/ 开始安装&#xff0c;可以自定义选择安装路径。 这里选择Add Pa…

【亲测,安卓版】快速将网页网址打包成安卓app,一键将网页打包成app,免安装纯绿色版本,快速将网页网址打包成安卓apk

背景&#xff1a;部分客户需求将自己网站打包成app&#xff0c;供用户在浏览器安装使用、 网页网址快速生成app 准备材料操作流程第一步&#xff1a;打开HBuilder X新建项目第二步创建Wap2App项目第三步修改App图标第四步发布app第五步查看apk 准备材料 1.需要打包的网页 2.ap…

在网页开发中,前后端如何更好地协同工作?

在网页开发中&#xff0c;前后端如何更好地协同工作是非常关键的&#xff0c;以下是一些方法和技巧可以帮助前后端更好地协同工作&#xff1a; 1.明确需求和规范&#xff1a;前后端应该共同讨论和明确项目的需求和规范&#xff0c;包括功能、界面、数据格式等。确保双方对项目…

页面加载不出来,报错[@umijs/runtime] load component failed

问题描述 页面加载不出来数据&#xff0c;一直在旋转&#xff0c;控制台输出内容如下&#xff1a; 原因分析&#xff1a; 之前页面是没有问题的&#xff0c;在写当前页面突然出现页面加载不出来&#xff0c;控制台报错&#xff0c;主要是页面引入了这行代码报错 import { …

MX Component基础使用(多点位读取,多点位写入)

步骤&#xff0c;先连接PLC&#xff0c;然后在填入对应的点位 D10 然后去读取。 using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;us…

边缘计算网关的主要功能有哪些?天拓四方

随着物联网&#xff08;IoT&#xff09;的快速发展和普及&#xff0c;边缘计算网关已经成为了数据处理和传输的重要枢纽。作为一种集成数据采集、协议转换、数据处理、数据聚合和远程控制等多种功能的设备&#xff0c;边缘计算网关在降低网络延迟、提高数据处理效率以及减轻云数…

民国漫画杂志《时代漫画》第13期.PDF

时代漫画13.PDF: https://url03.ctfile.com/f/1779803-1247458360-14efab?p9586 (访问密码: 9586) 《时代漫画》的杂志在1934年诞生了&#xff0c;截止1937年6月战争来临被迫停刊共发行了39期。 ps:资源来源网络&#xff01;