org-babel在发送到代码块变量之前没有连接字符串。

时间:2015-05-27 23:37:20

标签: emacs elisp org-mode aquamacs org-babel

我刚开始使用org-mode和org-babel作为实验室笔记本。我正在尝试使用代码块来填充表的两列。代码块似乎适用于第一列,因为这些是正确的数字。但是,当尝试将字符串连接到第三列中的文件名时,因此代码块在不同的文件集上工作,它似乎只是在原始文件上运行代码块,这产生与第一列相同的输出。

- (void)performRotationAnimated
{
    [UIView animateWithDuration:0.5
                          delay:0
                        options:UIViewAnimationOptionCurveLinear
                     animations:^{

                         self.iconView.transform = CGAffineTransformMakeRotation(M_PI);
                     }
                     completion:^(BOOL finished){

                         [UIView animateWithDuration:0.5
                                               delay:0
                                             options:UIViewAnimationOptionCurveLinear
                                          animations:^{

                                              self.iconView.transform = CGAffineTransformMakeRotation(0);
                                          }
                                          completion:^(BOOL finished){

                                              if (_rotate) {

                                                  [self performRotationAnimated];
                                              }
                                          }];
                     }];
}

0 个答案:

没有答案