在iOS UIAlertController中,我们可以保留UIAlertAction的对齐文本

时间:2016-08-29 18:58:39

标签: ios text alignment uialertaction

我需要实现一个UIAlertController,例如此UIAlertController,其中左对齐UIAlertAction

description1

在互联网上搜索了很多,然后在stackoverflow中,我能够实现左对齐标题UIAlertController

description2

但是如何左对齐UIAlertAction的文字?

任何帮助/线索都会非常有用。

2 个答案:

答案 0 :(得分:1)

是的,您可以使用以下

plotList <- list(p_A1, p_A2, p_A3...)
tableList <- list(s_A1, s_A2, s_A3...)

答案 1 :(得分:0)

有人在同一件事上发布了一个更新的问题:

UIAlertAction Text Styling

我正在寻找相同的东西,根据我所学到的,你只能在var config = require('./libs/sequelize-lib.js'); var connection = config.getSequelizeConnection();//Choosing to not pass in variable this time since this should only run via script. var models = config.setModels(connection);//Creates live references to the models using connection previosly created. //Alter table as needed but do NOT force the change. If an error occurs we will fix manually. connection.sync({ alter: false, force: false }).then( () => { models["users"].create({ "name":"joe", "loggedIn":true }).then( user => { console.log("finished, with user.name="+user.name); process.exit(); }).catch( error => { console.log("Error Occured"); console.log(error); }); }).catch(function(error) { console.log(error); }); 演示风格中使用UIAlertController时更改文本样式和对齐方式,但在使用它时则不能使用.alert演示文稿样式中的UIAlertAction项目。

这里只能使用提供自定义实现的库,例如XLActionController

.actionSheet演示文稿样式中整体修改UIAlertController的文本对齐方式,请访问:UIAlertController Text Styling

我尝试对.alert使用相同的方法但导致一些UIAlertAction例外并且控制器无法显示。