Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のコード:
CGPoint *tp_1 = CGPointMake(160, 240);
「初期化で互換性のない型」エラーが発生します...これはなぜですか??
CGPointMake構造体へのポインターではなく、構造体を返します。したがって、正しいコードは次のとおりです。
CGPointMake
CGPoint tp_1 = CGPointMake(160, 240);
CGPointMake がポインターを返していないようです。