Can i use emoji in my iOS App?

I want to use emoji like this in my iOS app and release it on the App Store.


struct ContentView: View {
    @State private var move = false
    
    var body: some View {
        VStack {
            Text("👻")
                .font(.largeTitle)
                .position(x: move ? 50 : 400)
            Button("Move") {
                withAnimation(.linear(duration: 2)) {
                    move.toggle()
                }
            }
        }
    }
}

Are there any other problems with this?(like legal issues, etc.)

Answered by Claude31 in 763248022

Yes you can. This is explicit in Guidelines:

4.5.6 Apps may use Unicode characters that render as Apple emoji in their app and app metadata. Apple emoji may not be used on other platforms or embedded directly in your app binary.

Accepted Answer

Yes you can. This is explicit in Guidelines:

4.5.6 Apps may use Unicode characters that render as Apple emoji in their app and app metadata. Apple emoji may not be used on other platforms or embedded directly in your app binary.

Can i use emoji in my iOS App?
 
 
Q