-1

Line を使用して単語を一致させるアプリケーションを開発しています。質問と回答を行いましたが、Line を使用して特定の質問を正解に一致させる方法を知りたいです。データベースを使用して質問の回答を表示しています

ここに画像の説明を入力

前もって感謝します

4

1 に答える 1

1

このリンクからソースコードを取得できます

線幅の変更、色などの線のプロパティを変更するには、そのソースコードの EC189DrawingViewController に移動し、次のセクションで編集します

- (void)drawShapes {
//NSLog(@"In drawShapes!");

UIGraphicsBeginImageContext(_drawingPad.frame.size);
CGContextRef context = UIGraphicsGetCurrentContext();

for(myShape *i in _collection) {
    [self drawShapesSubroutine:i contextRef:context];
    if(i.selected == true) {
        CGContextSetLineWidth(context, 1.0f);
        CGContextSetStrokeColorWithColor(context, [[UIColor darkGrayColor] CGColor]);
        float num[] = {6.0, 6.0};
        CGContextSetLineDash(context, 0.0, num, 2);

        CGRect rectangle;
        [self drawShapeSelector:i selectorRect: &rectangle];
        CGContextAddRect(context, rectangle);        
        CGContextStrokePath(context);


        //tapped = true;
    }
}

if(!skipDrawingCurrentShape && (selectedIndex == -1)) {
    [self drawShapesSubroutine:_currentShape contextRef:context];
}
_drawingPad.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}
于 2013-03-01T06:29:41.463 に答える