yazmnh87
yazmnh87

Reputation: 326

What do these red bullseye icons mean in Xcode?

Does anyoneenter image description here know what these red bullseye icons mean? I'm having trouble launching my react-native app after implementing cocoapods. Is there are a comprehensive list of all icons and their meaning in Xcode, I've looked haven't found anything.

Upvotes: 5

Views: 2655

Answers (2)

Daniel W
Daniel W

Reputation: 1

@yazmnh87 the red circle within a circle icon typically indicates a breakpoint. Breakpoints are used during debugging to pause the execution of your program at specific lines of code, allowing you to inspect the state of your application and diagnose issues.

Upvotes: -4

user149341
user149341

Reputation:

Both types of icons shown here are a visual pun of sorts.

The red bullseye icons are targets. (Like the kind you throw darts at.)

The white building icons are libraries. (Like the kind you get books from.)

Upvotes: 5

Related Questions