会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
徒步阳光
安心做技术,一万年!
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
···
10
下一页
2020年5月22日
我当前能力对AF的理解-AFURLSessionManager.h,写给我自己
摘要: @interface AFURLSessionManager : NSObject <NSURLSessionDelegate, NSURLSessionTaskDelegate, NSURLSessionDataDelegate, NSURLSessionDownloadDelegate, NSS
阅读全文
posted @ 2020-05-22 16:32 徒步阳光855
阅读(176)
评论(0)
推荐(0)
2020年4月1日
AFNetWorking -- AFURLResponseSerialization(CGImageGetBitsPerComponent() 和 8 的关系)
摘要: 1.CGImageGetBitsPerComponent() 和 8 什么关系? 网上查出来这个官方文档说取值 1 2 4 8 。 像素是RGB(R,G,B,A)组成,bit(R) = bit(G) = bit(B) = bit(A) = 8bit (rgb取值0~255)
阅读全文
posted @ 2020-04-01 16:54 徒步阳光855
阅读(288)
评论(0)
推荐(0)
2019年12月26日
java 进制
摘要: 十进制 二进制 1 十六进制 补码规则 1.计算机系统中,数值一律用二进制的补码来存储。 2.二进制的最高位是符号位,0是正(+); 1是负数(-); 3.正数的只是其本身,负数的只是最高位(符号位)不变,其他的位逐位取反,再加1 1101)_2 0011 4.两数相加,若最高位(符号位)有进位,则
阅读全文
posted @ 2019-12-26 14:34 徒步阳光855
阅读(89)
评论(0)
推荐(0)
2019年12月2日
Flutter -- iOS -- Stack
摘要: 1 import 'package:flutter/material.dart'; 2 import 'package:my/dart_01.dart'; 3 4 void main(){ 5 runApp(new MaterialApp( 6 title: 'Stack 布局示例Alignment', 7 home: new MyApp(), 8 ))...
阅读全文
posted @ 2019-12-02 10:27 徒步阳光855
阅读(444)
评论(0)
推荐(0)
2019年11月28日
Flutter -- iOS -- FittedBox
摘要: 1 import 'package:flutter/material.dart'; 2 3 class LayoutDemo extends StatelessWidget{ 4 @override 5 Widget build(BuildContext context) { 6 // TODO: implement build 7 return new Scaffold( 8 appBar: n
阅读全文
posted @ 2019-11-28 15:56 徒步阳光855
阅读(345)
评论(0)
推荐(0)
2019年11月27日
Flutter -- iOS -- Row
摘要: 1 import 'package:flutter/material.dart'; 2 3 class LayoutDemo extends StatelessWidget{ 4 @override 5 Widget build(BuildContext context) { 6 // TODO: implement build 7 return new Scaffold( 8 appBar: n
阅读全文
posted @ 2019-11-27 18:46 徒步阳光855
阅读(312)
评论(0)
推荐(0)
Flutter -- iOS -- Align
摘要: 1 import 'package:flutter/material.dart'; 2 3 class LayoutDemo extends StatelessWidget{ 4 @override 5 Widget build(BuildContext context) { 6 // TODO: implement build 7 return new ...
阅读全文
posted @ 2019-11-27 17:16 徒步阳光855
阅读(389)
评论(0)
推荐(0)
Flutter -- iOS -- Center
摘要: 1 import 'package:flutter/material.dart'; 2 3 void main() => runApp( 4 new MaterialApp( 5 title: 'Center居中布局', 6 home: new LayoutDemo(), 7 ), 8 ); 9 10 class LayoutDemo extends StatelessWidget{ 11 @ov
阅读全文
posted @ 2019-11-27 11:38 徒步阳光855
阅读(144)
评论(0)
推荐(0)
Flutter -- iOS -- Container
摘要: 1 import 'package:flutter/cupertino.dart'; 2 import 'package:flutter/material.dart'; 3 4 void main() =>runApp( 5 new MaterialApp( 6 title: 'Container布局容器示例', 7 home: new LayoutDemo(), 8 ) 9 ); 10 11 c
阅读全文
posted @ 2019-11-27 11:14 徒步阳光855
阅读(252)
评论(0)
推荐(0)
2019年11月26日
Flutter -- iOS导航栏TabBar
摘要: 1 import 'package:flutter/cupertino.dart'; 2 import 'package:flutter/material.dart'; 3 4 void main(){ 5 runApp(new MyApp()); 6 } 7 8 class MyApp extends StatelessWidget{ 9 @ov...
阅读全文
posted @ 2019-11-26 11:42 徒步阳光855
阅读(556)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
10
下一页
公告