上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: @interface AFURLSessionManager : NSObject <NSURLSessionDelegate, NSURLSessionTaskDelegate, NSURLSessionDataDelegate, NSURLSessionDownloadDelegate, NSS 阅读全文
posted @ 2020-05-22 16:32 徒步阳光855 阅读(176) 评论(0) 推荐(0)
摘要: 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)
摘要: 十进制 二进制 1 十六进制 补码规则 1.计算机系统中,数值一律用二进制的补码来存储。 2.二进制的最高位是符号位,0是正(+); 1是负数(-); 3.正数的只是其本身,负数的只是最高位(符号位)不变,其他的位逐位取反,再加1 1101)_2 0011 4.两数相加,若最高位(符号位)有进位,则 阅读全文
posted @ 2019-12-26 14:34 徒步阳光855 阅读(89) 评论(0) 推荐(0)
摘要: 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)
摘要: 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)
摘要: 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)
摘要: 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)
摘要: 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)
摘要: 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)
摘要: 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 下一页