小编Jac*_*ish的帖子

Xcode 11,命令 CodeSign 失败,退出代码非零

自从(违背我的意愿)更新到 Xcode 11 后,当我尝试构建我的项目时出现此错误:

CodeSign /Volumes/HDD/OpenFrameworks/of_v0.9.8_osx_release/apps/plus-pool-light/pplight-ofx-098/bin/pplight-ofx-098Debug.app (in target 'pplight-ofx-098' from project 'pplight-ofx-098')
cd /Volumes/HDD/OpenFrameworks/of_v0.9.8_osx_release/apps/plus-pool-light/pplight-ofx-098
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate

Signing Identity:     "-"


 /usr/bin/codesign --force --sign - --entitlements /Volumes/HDD/OpenFrameworks/of_v0.9.8_osx_release/apps/plus-pool-light/pplight-ofx-098/build/pplight-ofx-098.build/Debug/pplight-ofx-098.build/pplight-ofx-098Debug.app.xcent --timestamp=none /Volumes/HDD/OpenFrameworks/of_v0.9.8_osx_release/apps/plus-pool-light/pplight-ofx-098/bin/pplight-ofx-098Debug.app

/Volumes/HDD/OpenFrameworks/of_v0.9.8_osx_release/apps/plus-pool-light/pplight-ofx-098/bin/pplight-ofx-098Debug.app: code object is not signed at all
In subcomponent: /Volumes/HDD/OpenFrameworks/of_v0.9.8_osx_release/apps/plus-pool-light/pplight-ofx-098/bin/pplight-ofx-098Debug.app/Contents/Frameworks/GLUT.framework
Command CodeSign failed with a nonzero exit code
Run Code Online (Sandbox Code Playgroud)

我已经尝试清理我的项目,重置我的登录钥匙串,并重新启动我的电脑,但我仍然收到这个错误......怎么办?

我正在使用 OpenFrameworks 构建 OSX 应用程序,而不是 iOS 应用程序。当我在 Xcode 10.3 中构建它时,它工作正常,没有错误。

这个问题的独特之处在于,这是针对 Xcode 11,而不是 10,并且其他问题的答案都不适合我!

xcode

8
推荐指数
4
解决办法
1万
查看次数

React Native Text组件不会在View组件中居中

嗨,我认为这应该很简单,但我不能让它工作.似乎无论我做什么,我都无法让文本组件在视图内水平居中.我尝试过使用alignItems:center,justifyContent:center,alignSelf:center,textAlign:center ...没有用.我可以让它垂直居中,但不能水平居中.Whyyyyy亲爱的领主?

<Animated.View style={[styles.titleContainer]}>
    <Text style={styles.title}>App logo here</Text>
</Animated.View>
Run Code Online (Sandbox Code Playgroud)

如何让文本垂直和水平居中?

这是我的CSS:

titleContainer: {
    flex: 1,
    marginTop:30,
    marginBottom:30,
    justifyContent:'center'
},
title:{
    color:'white',
    textAlign:'center',
    alignSelf:'center'
},
Run Code Online (Sandbox Code Playgroud)

这是我的结果:

在此输入图像描述

text center view ios react-native

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

如何从 React Native 中的 ScrollView 组件获取 onPress 事件

我是React Native 的新手。我有一个带有ScrollView组件和几个自定义组件的应用程序。我想从 ScrollView 触发一个 onPressOut 事件,以便当用户滚动和释放时,ScrollView 内的子组件更新它们的状态。但是,ScrollView 文档不包括任何新闻事件:https : //facebook.github.io/react-native/docs/scrollview.html

我尝试过的其他事情:

  • 我试图包裹滚动型内TouchableWithoutFeedback组件,当我这样做,我得到一个错误,当我尝试滚动:

2015-10-26 11:59:13.849 [error][tid:com.facebook.React.ShadowQueue][RCTModuleMethod.m:60] RCTUIManager.measure 的参数 0 (NSNumber) 不能为空 2015-10-26 11 :59:13.850 [error][tid:com.facebook.React.ShadowQueue][RCTModuleMethod.m:60] 无法处理 RCTUIManager.measure 的参数 0 ()。中止方法调用。

不知道这意味着什么......有什么想法吗?谢谢!

这是我的代码:

<View ref="theWrapperView" style={styles.theWrapperView}>
            <ScrollView 
                onScroll={this.onScroll.bind(this)}
                onMomentumScrollEnd={this.onScrollAnimationEnd.bind(this)}

                style={styles.scrollView}
                contentContainerStyle={styles.scrollViewContentContainer}

                showsHorizontalScrollIndicator={true}
                scrollEventThrottle={10}
                pagingEnabled={true}
                horizontal={true}
                automaticallyAdjustContentInsets={false}
                snapToAlignment={'center'}
                snapToInterval={20}
                zoomScale={1.5}
                centerContent = {true}

            >
                {cards}
            </ScrollView>
        </View>
Run Code Online (Sandbox Code Playgroud)

当我将 View 元素更改为 TouchableWithoutFeedback 元素时,我收到了错误消息。

scrollview ios react-native

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

无法将React Native Animated值设置为View组件CSS样式

我正在尝试使用View组件样式动画.我按照这里列出的例子:https://facebook.github.io/react-native/docs/animations.html

但是,当我渲染我的组件时,我得到错误:

[tid:com.facebook.React.ShadowQueue] [RCTConvert.m:55]使用标记#7设置RCTView的属性"height"时出错:JSON值'{"_ animation"=""; "_children"=(); "_listeners"= {}; "_offset"= 0; "_value"= 200; }'类型NSDictionary无法转换为NSNumber

这就是我在构造函数中设置Animated值的方法:

  constructor() {
    super();
    this.state = {
      titleContainerHeight: new Animated.Value(200),
    }
  }
Run Code Online (Sandbox Code Playgroud)

以下是我的看法:

<View style={[styles.titleContainer,{height:this.state.titleContainerHeight}]}>
  <Text style={[{color: 'white'}]}>App logo here</Text>
</View>
Run Code Online (Sandbox Code Playgroud)

好像我正在处理文档描述的所有内容,而且我在另一个组件中做同样的事情而没有出现任何错误.那么,这里有什么问题?

animation view animated react-native

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

在 Spark AR 脚本中根据张嘴隐藏和显示对象

我正在 Spark AR Studio 中使用脚本来尝试显示和隐藏人头顶上的灯泡。灯泡隐藏起来,bulb.hidden我尝试过bulb.visible,但没有成功。有任何想法吗?代码如下:

(async function () {
    Scene.root.findFirst('Sphere').then(bulb => {
        // bulb.hidden = FaceTracking.face(0).mouth.openness
        bulb.hidden = true
        bulb.visible = FaceTracking.face(0).mouth.openness.gt(0.3);
    })
Run Code Online (Sandbox Code Playgroud)

spark-ar-studio

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