当前位置: 首页 > news >正文

html 5网站欣赏办公室设计图片

html 5网站欣赏,办公室设计图片,毕业作品是做网站的答辩会问什么,毕业设计是做网站设计qt 下载链接如下 https://download.qt.io/new_archive/qt/5.14/5.14.2/qt-opensource-mac-x64-5.14.2.dmg 安装选项全勾选就行#xff0c;这里特别说明下qt5.14.2/qml qt5.14.2对qml支持还算成熟#xff0c;但很多特性还得qt6才行#xff0c;这里用qt5.14.2主要是考虑到服…qt 下载链接如下 https://download.qt.io/new_archive/qt/5.14/5.14.2/qt-opensource-mac-x64-5.14.2.dmg 安装选项全勾选就行这里特别说明下qt5.14.2/qml qt5.14.2对qml支持还算成熟但很多特性还得qt6才行这里用qt5.14.2主要是考虑到服务器是租赁的为了稳定考虑吐槽下qt5.14.2/qml TextField不支持添加close buttonRowLayout和Qt widget的是相反的添加边距页不是那么友好Button远没有RectangeMouseArea好用自带的日历页没法用需要重写要熟练使用Loader这个很关键涉及大量自定义控件都可以用Loader对NetWork支持不够windows只能配合mvsc使用mac基本没戏很多js的 图表没法用基本只能用Charts项目开发的文件目录如下可以作为参考 动画支持很好滑动效果页不错多语言基本和qt widget的一样qml对jsData支持很特别可以好好研究下使用inputMethodHints可以指定弹出键盘的类型如数字键盘、适配邮箱的键盘、密码键盘等会有些bug要慢慢试 qt的作用是生成xcodeproj文件后续模拟器之类的在xcode里进行就行这里用IOS Simulator来编译 xcode mac上必须安装xcode先判断系统的版本号在appstore里找到对应的xcode版本直接下载一般是没用的 在下面链接找到对应的xcode https://developer.apple.com/download/more/解压到/Applications里 设置环境变量 sudo xcode-select -s /Applications/Xcode.app/Contents/Developer安装python3 brew install python编译项目会遇到无法识别python的时候 ios/mkspecs/features/uikit/devices.py: /usr/bin/python: bad interpreter: No such file or directory按下面方法来 gedit /Users/mac/Qt5.14.2/5.14.2/ios/mkspecs/features/uikit/devices.py #!/usr/bin/python 改为#!/usr/bin/python3xcode编译失败错误如下 The following build commands failed:CompileC /Users/mac/Qt5.14.2/Examples/Qt-5.14.2/gui/build-analogclock-Qt_5_14_2_for_iOS_Simulator-Release/analogclock.build/Release-iphonesimulator/analogclock.build/Objects-normal/x86_64/moc_rasterwindow.o /Users/mac/Qt5.14.2/Examples/Qt-5.14.2/gui/build-analogclock-Qt_5_14_2_for_iOS_Simulator-Release/moc_rasterwindow.cpp normal x86_64 c com.apple.compilers.llvm.clang.1_0.compiler (in target analogclock from project analogclock) (1 failure) make: *** [xcodebuild-release-simulator] Error 65 08:31:32: 进程/usr/bin/make退出退出代码 2 。 Error while building/deploying project analogclock (kit: Qt 5.14.2 for iOS Simulator)按下面方法来 感谢csdn article/details/122301192 pro加 LIBS -F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks -framework VideoToolbox LIBS -F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks -framework CoreMedia LIBS -F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks -framework CoreVideoxcode发布时需要开发者账号688一年用自己的appid就行appstore下载Developer在Developer里完成购买注意别填自己的名字填团队的名字然后需要第二个账号用于团队管理加入后才能后续开发这些都要在xcode里预先配置好若之前配置好的账号出现问题如下图清除所有账号信息重启xcode可以解决 info.list qt的发布全部在info.list完成不要动xcode的任何设置 参考了项目c2gQtWS_x ios文件夹的目录结构 要注意图片分辨率MyLaunchScreen.xib是app启动前的画面这里只是居中文字显示了简单些 Images.xcassets文件夹只有下面一个文件夹 AppIcon.appiconset文件夹下包含app图标 共23个文件要注意图片分辨率其他照抄就行 ios的部分图片是不支持透明通道的一般ITunes之类的图标不行自己改或通过makeappicon生成也行 info.plist内容如下特别注意CFBundleShortVersionString这个是正儿八经的版本号后期软件更新递增就行如1.0.0-》1.0.1其他照抄 ?xml version1.0 encodingUTF-8? !DOCTYPE plist PUBLIC -//Apple//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd plist version1.0 dictkeyCFBundleDisplayName/keystring${PRODUCT_NAME}/stringkeyCFBundleExecutable/keystring${EXECUTABLE_NAME}/stringkeyCFBundleGetInfoString/keystringCreated by Qt/QMake/stringkeyCFBundleIdentifier/keystring$(PRODUCT_BUNDLE_IDENTIFIER)/stringkeyCFBundleName/keystring${PRODUCT_NAME}/stringkeyCFBundlePackageType/keystringAPPL/stringkeyCFBundleShortVersionString/keystring1.0.0/stringkeyCFBundleSignature/keystring${QMAKE_PKGINFO_TYPEINFO}/stringkeyCFBundleVersion/keystring${QMAKE_FULL_VERSION}/stringkeyITSAppUsesNonExemptEncryption/keyfalse/keyLSRequiresIPhoneOS/keytrue/keyNOTE/keystringThis file was generated by Qt/QMake./stringkeyNSPhotoLibraryUsageDescription/keystring$(PRODUCT_NAME) uses photos/stringkeyUILaunchStoryboardName/keystringLaunchScreen/stringkeyUISupportedInterfaceOrientations/keyarraystringUIInterfaceOrientationPortrait/stringstringUIInterfaceOrientationPortraitUpsideDown/stringstringUIInterfaceOrientationLandscapeLeft/stringstringUIInterfaceOrientationLandscapeRight/string/array /dict /plistappstoreconnect TestFlight 好了一些准备就绪就开始上传项目这里先传TestFlight好好测试App 添加内测人员 这里会发送邮件内含兑换码打开TestFlight输入兑换码即可下载并测试 发布 内测可以正式发布了发布时要传如何登录的视频和App的介绍可以用中文要尽量简洁方便理解这个切记 App Review 一般第一次审核时会被驳回如Guideline 2.1 - Information Needed 除了要考虑下面这条其他如实填写 Are the enterprise services in your app sold to single users, consumers, or for family use? A: No, our app is provided to employees who have joined xxx.记住真诚是最大的必杀技要清晰明了的表达自己的意见并附带视频、截图等 最后大功告成 附审核的问答 Hello,Thank you for your resubmission, but we need additional information before we can continue our review.Please reply to this message in App Store Connect with detailed answers to the questions below.Review EnvironmentSubmission ID: xxxx Review date: January 13, xxx Version reviewed: 1.0.0Guideline 2.1 - Information NeededWe have started our review, but we need additional information to continue. Specifically, it appears your app may access or include paid digital content or services, and we want to understand your business model before completing our review.Next StepsPlease review the following questions and provide as much detailed information about your business model as you can.1. Who are the users that will use the paid features and services in the app? 2. Where can users purchase the subscriptions that can be accessed in the app? 3. What specific types of previously purchased services can a user access in the app? 4. What paid content, subscriptions, or features are unlocked within your app that do not use in-app purchase? 5. Are the enterprise services in your app sold to single users, consumers, or for family use?Support- Reply to this message in your preferred language if you need assistance. If you need additional support, use the Contact Us module. - Consult with fellow developers and Apple engineers on the Apple Developer Forums. - Provide feedback on this message and your review experience by completing a short survey.Dear Apple Review Team:Thank you for your patient review. Firstly, lets introduce the xxx. It is a company that xxx, yyy, and more. Its homepage is https://www.xxx.com. The xxx is one of the brands of the xxx. Regarding the 5 questions you mentioned, our response is as follows:1. Who are the users that will use the paid features and services in the app? A: Companies such as xxx, zzz and yyy will use the paid features and services.2. Where can users purchase the subscriptions that can be accessed in the app? A: Fisrtly, open webpage https://www.xxxx.net/register and fill in the relevant information and complete the registration to obtain the account. Secondary, open webpage https://www.xxxx.net/xxxx/xxxx, user can purchase the subscriptions in the Billingsubscriptions section.Please see the attachment How do users obtain an account. png, Introduce of subscriptions.png and How do users purchase the subscriptions.png for details.3. What specific types of previously purchased services can a user access in the app? A: User can access xxx, zzz, yyyy, vvv and www in xxx app.4. What paid content, subscriptions, or features are unlocked within your app that do not use in-app purchase? A: All function are used after subscriptions, Employees can access the application during the trial period, but if exceeds, employees must subscribe to the service.5. Are the enterprise services in your app sold to single users, consumers, or for family use? A: No, our app is provided to employees who have joined xxx.
http://www.eeditor.cn/news/118710/

相关文章:

  • 做网站 徐州saas搭建
  • 丹江口网站制作seo外包网络公司
  • 网站建设推广服务商名聚优品一家只做正品的网站
  • 外国网页设计网站wordpress图片优化加速
  • 鲜花网站建设项目概述网站建站免费
  • 织梦网站字体大小网站水印怎么做的
  • 做一个网站能挣多少钱用易语言可以做网站吗
  • 用手机做诱导网站大连中国建筑装饰网
  • 深圳网站建设网站制作哪家好企业解决方案架构
  • 公司网站怎么做分录建材类网站模板
  • 巩义网站建设案例课堂手机端网站开发流程
  • 新手做啥网站好华为云建站和阿里云建站区别
  • 优秀网站设计作品分析阳春做网站公司
  • 网站seo文章网站开发流程说明
  • vivo手机为什么建设网站西安志成网站建设公司
  • 中国建设银行网站查行号保定免费网站建站模板
  • 站建设培训学校网站建设方面的书籍书籍
  • 网站做流量推广的方式网站建设好之后怎么自己推广
  • 公司网站开发视频教程app营销的特点
  • 宝安专业网站设计公司钓鱼网站排名假冒建设银行最多
  • 单位网站建设需要哪些技术如何利用微信进行企业网站推广
  • 电子科技东莞网站建设成都设计院
  • 网站开发费用如何记账宜兴做网站哪个好
  • 线上ui设计培训哪个好怎么做自己网站产品seo
  • 美丽乡村网站建设自己制作网页的步骤
  • 网站建设数据录入网站开发必学书籍
  • 怎么在网站视频做字幕低代码开发平台哪个最好
  • 网站建设依据asp网站后台源码
  • 中国建设银行徐州分行网站河南省建设厅厅长
  • 360网站收录提交入口网络推广方案找v信hyhyk1做推广好