How to form CGPoint array in Objective C

后端 未结 5 1226
我寻月下人不归
我寻月下人不归 2021-01-31 09:07

I want to get this structure

CGPoint addLines1[] =
{
    CGPointMake(30.0, 150.0),
    CGPointMake(41.67, 145.19),
    CGPointMake(53.33, 103.25),
    CGPointMak         


        
5条回答
  •  一个人的身影
    2021-01-31 09:58

    For iOS:

    Create array:

    NSArray *myCGPointArray = @[[NSValue valueWithCGPoint:CGPointMake(30.0, 150.0)],[NSValue valueWithCGPoint:CGPointMake(41.67, 145.19)]];
    

    Get 1st CGPoint object:

    CGPoint myPoint = [myCGPointArray[0] CGPointValue];
    

提交回复
热议问题