1.移动端h5展示一般通过设置meta的viewport来规范页面的展示效果 /* 在ios >= 10 系统下,user-scalable=no已不起作用 */<meta name="viewport" content="width=device-width, initial-scale=1.0, ...
分类:
移动开发 时间:
2020-08-17 17:17:03
阅读次数:
104
self.navigationController.navigationBar.translucent=NO; [self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarM ...
分类:
移动开发 时间:
2020-08-17 16:51:49
阅读次数:
87
创建线程与join() #include<iostream> #include<thread> using namespace std; void proc() { cout << "我是子线程" << endl; } int main() { thread th2(proc); th2.join( ...
分类:
编程语言 时间:
2020-08-17 16:41:39
阅读次数:
74
本篇介绍UIImage、UIImageView 元素的常用功能用法。 ...
分类:
移动开发 时间:
2020-08-16 00:01:51
阅读次数:
134
今天上午,苹果正式发布iOS13.6.1/iPadOS13.6.1版本。不出意外的话,本次版本更新将会是iOS13系统的最后一次更新了,目前苹果的重心全部放在即将到来的iOS14系统上,它的正式版预计会在9月中旬发布。正在使用iOS13正式版系统的用户,可以自动检测到iOS13.6.1版本更新,并通过点击"设置">"通用">"软件更新&
分类:
移动开发 时间:
2020-08-15 22:25:39
阅读次数:
96
凭证可以用来存储需要密文保护的数据库密码、gitlab密码信息、docker私有仓库密码等,以便jenkins可以和这些第三方的应用进行交互 安装插件【 Credentials Binding】 Manage Jenkins -> Manage Credentials(凭证) -> 全局 -> 添加 ...
分类:
其他好文 时间:
2020-08-15 22:23:54
阅读次数:
71
题目 给定一个二叉树,返回它的中序 遍历。 实现 # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution: def inorderTraversal(self, roo ...
分类:
其他好文 时间:
2020-08-15 22:23:27
阅读次数:
69
1.ISO简介1.简介:OpenSystemInterconnection开放系统互联模型开放式系统互联:国际标准化组织(IOS)制定,定义了不同计算机互联的标准,设计和描述,计算机网络通信的构架。全世界网络通信的工作分为7层:应用层,表示层,会话层,传输层,网络层,数据连接层,物理层。制定OSI的优势:开放,厂商兼容性,利于理解和学习,模块化工程,故障排除。2.OSI:7层次结构和功能:应用层:
分类:
其他好文 时间:
2020-08-13 22:25:56
阅读次数:
393
#include<iostream> using namespace std; struct node { int v,height; node*lchild; node*rchild; int data; }; int x; node* newNode(int v) { node*Node =ne ...
分类:
其他好文 时间:
2020-08-13 12:14:51
阅读次数:
95
首先取出这个项链的长度x,如果他是回文数的话让项链减去一半,x减去一半,如果他不是回文数,就退出循环 上代码: #include <iostream>#include <cstdio>#include <cmath>#include <cstring>#include <algorithm>#inc ...
分类:
其他好文 时间:
2020-08-13 12:13:39
阅读次数:
53