黑苹果xcode断点不起作用的解决方法

修改

/Library/Preferences/SystemConfiguration/com.apple.Boot.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Kernel</key>
    <string>mach_kernel</string>
    <key>Kernel Flags</key>
    <string>cpus=1 -f std_dyld=1</string>     <?---  加上这一句->
    <key>Timeout</key>
    <string>5</string>
    <key>device-properties</key>
    <string></string>
</dict>
</plist>
重启后一般都可以

你可能感兴趣的:(xcode,encoding)