ios启动私有链查询区块信息的方法是什么
ios启动私有链查询区块信息的方法是什么
本篇内容介绍了“ios启动私有链查询区块信息的方法是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
一、新建一个ios swift项目
二、下载并安装CocoaPods.app-1.5.2.tar.bz2
三、通过pod安装geth插件
$ cd /Users/shijun/Desktop/iosWorkspace/BlockChain
$ pod init
生成Podfile文件,并修改内容
target 'BlockChain' do
pod 'Geth', '1.8.12' #加这行
use_frameworks!
target 'BlockChainTests' do
pod 'Geth', '1.8.12' #加这行
inherit! :search_paths
end
target 'BlockChainUITests' do
pod 'Geth', '1.8.12' #加这行
inherit! :search_paths
end
end
$ pod install
========================================
Analyzing dependencies
Downloading dependencies
Installing Geth (1.8.12)
Generating Pods project
Integrating client project
[!] Please close any current Xcode sessions and use `BlockChain.xcworkspace` for this project from now on.
Sending stats
Pod installation complete! There is 1 dependency from the Podfile and 1 total pod installed.
[!] Automatically assigning platform `ios` with version `11.4` on target `BlockChain` because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`.
========================================
四、ios代码
创建新帐号
========================================
import Geth
let keyStorePath = "/Users/shijun/Desktop/blockChain/ethereum/private/data0/keystore"
print("keyStorePath: \(keyStorePath)")
let keyStoreManager = GethNewKeyStore(keyStorePath, GethLightScryptN, GethLightScryptP)
let account = try! keyStoreManager?.newAccount("password")
let address = account?.getAddress().getHex()
print("address: \(address!)")
let url = account?.getURL()
print("url: \(url!)")
========================================
四、问题汇总
真机build faile
解决:all + Combined ,搜索bitcode,enable bitcode讲yes修改为no
========================================
“ios启动私有链查询区块信息的方法是什么”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!
推荐阅读
-
ios14系统怎么用nfc(ios 14新增的nfc功能怎么用)
ios14新增的nfc功能怎么用?1.打开iPhone后,选择手机的[设置]图标。2.进入后,点击【通用】选项进入。3.单击并选...
-
微信小程序iOS端怎么暂停animated动画
-
iOS中多线程的示例分析
-
正则表达式在ios中怎么用
正则表达式在ios中怎么用这篇文章主要为大家展示了“正则表达式在i...
-
如何进行iOS中的信息泄露漏洞CVE-2020-9964分析
如何进行iOS中的信息泄露漏洞CVE-2020-9964分析今天就...
-
iOS中怎么删除无用的类
本篇文章给大家分享的是有关iOS中怎么删除无用的类,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话...
-
iOS中怎么实现一个序列动画
这篇文章给大家介绍iOS中怎么实现一个序列动画,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。UIViewPr...
-
iOS中怎么利用MVVM实现路由
iOS中怎么利用MVVM实现路由,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更...
-
iOS中怎么判断当前网络环境
本篇文章为大家展示了iOS中怎么判断当前网络环境,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所...
-
iOS中怎么改变UIBarButtonItem的大小
今天就跟大家聊聊有关iOS中怎么改变UIBarButtonItem的大小,可能很多人都不太了解,为了让大家更加了解,小编给大家总结...