首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >获取运行应用程序模板代码的EXC_BAD_ACCES错误

获取运行应用程序模板代码的EXC_BAD_ACCES错误
EN

Stack Overflow用户
提问于 2016-01-17 00:41:38
回答 1查看 146关注 0票数 0

初步详情:

  • OS X 10.11
  • Xcode 7.2
  • SFML 2.3.2
  • Clang C++11
  • 默认SFML应用程序模板

问题:

我刚刚完成了SFML的新安装,我反复检查和三次检查所有需要的文件都在正确的位置。

当我为Xcode构建和运行股票SFML模板时,我在这个文件的第81行(第81行: EXC_BAD_ACCESS -也清楚地注释)上得到了一个window.draw(sprite);

代码语言:javascript
运行
复制
//
// Disclamer:
// ----------
//
// This code will work only if you selected window, graphics and audio.
//
// Note that the "Run Script" build phase will copy the required frameworks
// or dylibs to your application bundle so you can execute it on any OS X
// computer.
//
// Your resource files (images, sounds, fonts, ...) are also copied to your
// application bundle. To get the path to these resource, use the helper
// method resourcePath() from ResourcePath.hpp
//

#include <SFML/Audio.hpp>
#include <SFML/Graphics.hpp>

// Here is a small helper for you ! Have a look.
#include "ResourcePath.hpp"

int main(int, char const**)
{
    // Create the main window
    sf::RenderWindow window(sf::VideoMode(800, 600), "SFML window");

    // Set the Icon
    sf::Image icon;
    if (!icon.loadFromFile(resourcePath() + "icon.png")) {
        return EXIT_FAILURE;
    }
    window.setIcon(icon.getSize().x, icon.getSize().y, icon.getPixelsPtr());

    // Load a sprite to display
    sf::Texture texture;
    if (!texture.loadFromFile(resourcePath() + "cute_image.jpg")) {
        return EXIT_FAILURE;
    }
    sf::Sprite sprite(texture);

    // Create a graphical text to display
    sf::Font font;
    if (!font.loadFromFile(resourcePath() + "sansation.ttf")) {
        return EXIT_FAILURE;
    }
    sf::Text text("Hello SFML", font, 50);
    text.setColor(sf::Color::Black);

    // Load a music to play
    sf::Music music;
    if (!music.openFromFile(resourcePath() + "nice_music.ogg")) {
        return EXIT_FAILURE;
    }

    // Play the music
    music.play();

    // Start the game loop
    while (window.isOpen())
    {
        // Process events
        sf::Event event;
        while (window.pollEvent(event))
        {
            // Close window: exit
            if (event.type == sf::Event::Closed) {
                window.close();
            }

            // Escape pressed: exit
            if (event.type == sf::Event::KeyPressed && event.key.code == sf::Keyboard::Escape) {
                window.close();
            }
        }

        // Clear screen
        window.clear();

        // Draw the sprite
        window.draw(sprite); // -------------- LINE 81

        // Draw the string
        window.draw(text);

        // Update the window
        window.display();
    }

    return EXIT_SUCCESS;
}

我试过的

我在网上搜索过(包括seems ),常见的原因似乎是某种堆栈溢出。但据我所知,我看不出会导致上述程序堆栈溢出的原因。

EN

回答 1

Stack Overflow用户

发布于 2016-01-17 08:34:04

如果您查找SFML论坛中的此类错误,您会发现它总是由于系统上存在一些旧的头/二进制文件而不是使用较新的文件所致。

在安装最新版本之前,请确保删除了所有版本的SFML。根据安装SFML教程,您需要查看:

  • /usr/local/include
  • /usr/local/lib
  • /Library/Frameworks
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/34833835

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档