小编May*_*ani的帖子

如何在xcode中增加导航栏的高度?

我正在开发一个应用程序,我需要保留一个导航栏.当我在酒吧写任何标题时,时间和标题有点彼此非常接近.我想增加酒吧的高度,这样就可以获得一些喘息空间.

iphone xcode objective-c ios swift

36
推荐指数
8
解决办法
6万
查看次数

如何在mac中设置ANDROID_SDK_ROOT?

我正在尝试使用cordova进行应用程序开发,现在我专注于android,我想要运行这个命令cordova emulate android.它运行了一个很长的这个包的列表,并给出了构建成功的消息,但最后它说PANIC: Cannot find AVD system path. Please define ANDROID_SDK_ROOT(还提到,我使用Homebrew)

这是命令行中的脚本.

建立成功

总时间:1.345秒构建以下apk(s):

/users/mayurtolani/myMobileApp/platforms/android/build/outputs/apk/android-debug.apk

ANDROID_HOME =在/ usr /本地/库/ Android的SDK/24.4.1_1

JAVA_HOME = /图书馆/的Java/JavaVirtualMachines/jdk1.8.0_101.jdk /内容/首页

未指定模拟器,默认为Nexus_5_API_24

等待模拟器启动...

PANIC:找不到AVD系统路径.请定义ANDROID_SDK_ROOT

android android-emulator cordova

14
推荐指数
6
解决办法
3万
查看次数

离子 2 应用程序中的“AngularFireAuth”类型不存在属性“authState”

我正在尝试使用 firebase 的 AngularFire2 进行 Facebook 身份验证。我遵循与本教程完全相同的步骤github.com/angular/angularfire2/blob/master/docs/Auth-with-Ionic2.md

但由于某种原因,这行不通。它给了我提供者页面上的许多错误。这是我的代码。

import { Injectable } from '@angular/core';
import { Component } from '@angular/core';
import { Http } from '@angular/http';
import 'rxjs/add/operator/map';
import { Observable } from 'rxjs/Observable';
import { AngularFireAuth } from 'angularfire2/auth';
import * as firebase from 'firebase/app';


@Injectable()
export class AuthService {
     private authState: Observable<firebase.User>;
     private currentUser: firebase.User;

     constructor(public http: Http, public afAuth: AngularFireAuth) {
     console.log('Hello AuthService Provider');
     this.authState = afAuth.authState; //First error here.
     afAuth.subscribe((user: firebase.User) => { //second here …
Run Code Online (Sandbox Code Playgroud)

angularjs firebase firebase-authentication ionic2 angularfire2

6
推荐指数
1
解决办法
2999
查看次数

如何使SwiftUI视图可滚动?

如何使“身体视图”可滚动?

我需要使大的Lorem ipsum文本可滚动。

struct FeatureDetail : View {
    var body: some View {  
       //Scrollable {  Does Not work
        VStack{
            Image("wwdc")
                .resizable()
                .aspectRatio(contentMode: .fit)
                .padding()

            Text("Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic …
Run Code Online (Sandbox Code Playgroud)

ios swiftui

5
推荐指数
1
解决办法
1490
查看次数

如何通过终端在xcode中打开.playground文件?

我刚刚学习了终端的基础知识,所以我试图打开一个trees.playground由以下命令命名的文件:

open trees.playground
Run Code Online (Sandbox Code Playgroud)

但终端说:

No application knows how to open trees.playground.
Run Code Online (Sandbox Code Playgroud)

如何让终端知道XCode可以打开这样的文件?

terminal xcode ios swift-playground

3
推荐指数
1
解决办法
996
查看次数

在ionic 2 app中打开PDF文件

我正在尝试制作一个离子2应用程序.我有一个使用jsPDF生成的pdf.

相同的代码是

var doc = new jsPDF();
doc.setFontStyle('Bold');
doc.setFontSize(14);
doc.text('Testing PDFs', 20, 20);
Run Code Online (Sandbox Code Playgroud)

现在我想在移动应用程序中保存打开PDF,

doc.output('save', 'tester.pdf');似乎不适用于移动应用程序.

请问您能告诉我哪个插件可以安装,以便查看和分享新制作的PDF格式.

javascript angularjs jspdf cordova-plugins ionic2

1
推荐指数
1
解决办法
8780
查看次数