小编Lam*_*ost的帖子

错误:值不能为空

我正在尝试使用FreeSpire将安全的PDF转换为XPS并返回PDF,然后使用iTextSharp将它们组合在一起.下面是我转换各种文件的代码段.

char[] delimiter = { '\\' };
string WorkDir = @"C:\Users\rwong\Desktop\PDF\Test";
Directory.SetCurrentDirectory(WorkDir);
string[] SubWorkDir = Directory.GetDirectories(WorkDir);
//convert items to PDF
foreach (string subdir in SubWorkDir)
{
    string[] Loan_list = Directory.GetFiles(subdir);
    for (int f = 0; f < Loan_list.Length - 1; f++)
    {
        if (Loan_list[f].EndsWith(".doc") || Loan_list[f].EndsWith(".DOC"))
        {
            Spire.Pdf.PdfDocument doc = new Spire.Pdf.PdfDocument();
            doc.LoadFromFile(Loan_list[f], FileFormat.DOC);
            doc.SaveToFile((Path.ChangeExtension(Loan_list[f],".pdf")), FileFormat.PDF);
            doc.Close();
        }
        . //other extension cases
        .
        .
        else if (Loan_list[f].EndsWith(".pdf") || Loan_list[f].EndsWith(".PDF"))
         {
             PdfReader reader = new PdfReader(Loan_list[f]);
             bool PDFCheck = reader.IsOpenedWithFullPermissions;
             reader.Close(); …
Run Code Online (Sandbox Code Playgroud)

c# pdf-generation xpsdocument itextsharp spire.doc

10
推荐指数
1
解决办法
1361
查看次数

如何让UIButton摇动?

我正在学习使用关键帧和弹簧动画的UIView动画,我试图在点击它后按下按钮.问题是我从库中拖放按钮并将后缘固定在它上面的UILabel而没有别的.在各种示例中,我看到了标题约束,但我的按钮没有标题.这是我到目前为止的代码

@IBAction func noButtonPressed(_ sender: UIButton) {
    UIView.animate(withDuration: 1, delay: 1, usingSpringWithDamping: 0.5, initialSpringVelocity: 15, options: [], animations: {
        self.noButtonTrailing.constant = 16
        self.view.layoutIfNeeded()
    })
}
Run Code Online (Sandbox Code Playgroud)

我想在某处制作标题约束吗?谢谢

animation uibutton shake ios swift

4
推荐指数
1
解决办法
1883
查看次数

无法删除输入框边框

我正在尝试删除输入框的边框,但不确定在渲染时为什么它不起作用。我正在使用React.JS渲染页面,但是我不认为这是问题。

React.JS

    return (
        <div>
            <form className = "formPosition">
                <div className = "formTitle">Hello.</div>
                <div className = "formDescription">Please enter your username and password</div>
                <div className = "usernameFormat">
                    <input type = "text" placeholder = "Username"/><br/>
                </div>
                <div className = "passwordFormat">
                    <input type = "password" placeholder = "Password"/><br/>
                </div>
            </form>
        </div>
    );
Run Code Online (Sandbox Code Playgroud)

输入框的CSS

input [type=text], input [type=password]
{
    border:none;
    border-bottom: 1px solid lightgray;
}
Run Code Online (Sandbox Code Playgroud)

的HTML

<!DOCTYPE html>
<html>
  <head>
    <link href='//fonts.googleapis.com/css?family=Raleway:400,300,600' rel='stylesheet' type='text/css'>
    <link href='http://fonts.googleapis.com/css?family=Lora:400,700' rel='stylesheet' type='text/css'>
    <link rel="stylesheet" href="/css/styles.css">
  </head>
  <body>

      <div …
Run Code Online (Sandbox Code Playgroud)

css

1
推荐指数
1
解决办法
1092
查看次数

UITapGestureRecognizer 未正确触发

我对 iOS 开发相当陌生,我正在遵循 Apple 的应用程序开发教程,所以请耐心等待。我目前正在 XCode 8 上使用 Swift 3 进行开发

\n\n

我在教程中将 UITapGestureRecognizer 连接到情节提要上的图像视图。我已经编写了代码来实现从库中挑选照片并将其放入图像视图的操作。当我运行模拟并单击图像视图时,没有弹出窗口要求应用程序访问照片或任何内容。下面是我写的代码

\n\n
import UIKit\n\nclass ViewController: UIViewController, UITextFieldDelegate, UIImagePickerControllerDelegate, UINavigationControllerDelegate {\n\n\n// MARK: Properties\n@IBOutlet weak var mealNameLabel: UILabel!\n@IBOutlet weak var nameTextField: UITextField!\n@IBOutlet weak var photoImageView: UIImageView!\n\n\noverride func viewDidLoad() {\n    super.viewDidLoad()\n    // Do any additional setup after loading the view, typically from a nib.\n\n    //  Handle the text  field\xc2\xb4s user input through delegate callbacks\n    nameTextField.delegate = self\n}\n\n// MARK: UITextFieldDelegate\nfunc textFieldShouldReturn(_ textField: UITextField) -> Bool {\n    // Hide the keyboard.\n …
Run Code Online (Sandbox Code Playgroud)

ios uitapgesturerecognizer swift

1
推荐指数
1
解决办法
222
查看次数